about summary refs log tree commit homepage
path: root/lib/PublicInbox/Repobrowse.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Repobrowse.pm')
-rw-r--r--lib/PublicInbox/Repobrowse.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/PublicInbox/Repobrowse.pm b/lib/PublicInbox/Repobrowse.pm
index cc18255d..219b44d6 100644
--- a/lib/PublicInbox/Repobrowse.pm
+++ b/lib/PublicInbox/Repobrowse.pm
@@ -52,10 +52,14 @@ sub no_tslash {
                 $base =~ s!/+\z!!;
                 $uri = $cgi->request_uri;
         }
+        my $qs = '';
+        if ($uri =~ s/(\?.+)\z//) {
+                $qs = $1;
+        }
         if ($uri !~ s!/+\z!!) {
                 warn "W: buggy redirect? base=$base request_uri=$uri\n";
         }
-        my $url = $base . $uri;
+        my $url = $base . $uri . $qs;
         [ 301,
           [ Location => $url, 'Content-Type' => 'text/plain' ],
           [ "Redirecting to $url\n" ] ]