about summary refs log tree commit homepage
path: root/lib/PublicInbox/RepoGitTag.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/RepoGitTag.pm')
-rw-r--r--lib/PublicInbox/RepoGitTag.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/RepoGitTag.pm b/lib/PublicInbox/RepoGitTag.pm
index 6a35f61c..785de6b1 100644
--- a/lib/PublicInbox/RepoGitTag.pm
+++ b/lib/PublicInbox/RepoGitTag.pm
@@ -19,11 +19,11 @@ my %cmd_map = ( # type => action
 sub call_git_tag {
         my ($self, $req) = @_;
 
-        my $h = $req->{h};
-        defined $h or return git_tag_list($self, $req);
+        my $tip = $req->{tip};
+        defined $tip or return git_tag_list($self, $req);
         sub {
                 my ($res) = @_;
-                git_tag_show($self, $req, $h, $res);
+                git_tag_show($self, $req, $tip, $res);
         }
 }