about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-02-22 03:10:43 +0000
committerEric Wong <e@80x24.org>2017-02-22 03:10:43 +0000
commitc1043e6471fdd5d88ceb6ed53a6af330d20b85a7 (patch)
treee7303982975f4ce4e0e9533c45de8c14d242848f
parent6158b3e3476cd49a2e6c32fad88a7905ec88de8f (diff)
downloadpublic-inbox-c1043e6471fdd5d88ceb6ed53a6af330d20b85a7.tar.gz
We will try to reduce the amount of query parameters as
much as possible to make URLs more amenable to caching
at various levels.
-rw-r--r--lib/PublicInbox/RepoGitQuery.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/RepoGitQuery.pm b/lib/PublicInbox/RepoGitQuery.pm
index c8d4a256..6a560d48 100644
--- a/lib/PublicInbox/RepoGitQuery.pm
+++ b/lib/PublicInbox/RepoGitQuery.pm
@@ -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) = @_;