]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
repobrowse: eliminate unused query parameters
authorEric Wong <e@80x24.org>
Wed, 22 Feb 2017 03:10:43 +0000 (03:10 +0000)
committerEric Wong <e@80x24.org>
Wed, 22 Feb 2017 03:10:43 +0000 (03:10 +0000)
We will try to reduce the amount of query parameters as
much as possible to make URLs more amenable to caching
at various levels.

lib/PublicInbox/RepoGitQuery.pm

index c8d4a256bfab27114ddf591dfab3f3940d5ae2fc..6a560d48f3243e1342ec9d9ed9d320702b53b7c4 100644 (file)
@@ -7,7 +7,7 @@ use strict;
 use warnings;
 use PublicInbox::Hval;
 use URI::Escape qw(uri_unescape);
-my @KNOWN_PARAMS = qw(id id2 ofs);
+my @KNOWN_PARAMS = qw(ofs);
 
 sub new {
        my ($class, $env) = @_;