about summary refs log tree commit homepage
path: root/lib/PublicInbox/RepoGit.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/RepoGit.pm')
-rw-r--r--lib/PublicInbox/RepoGit.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/RepoGit.pm b/lib/PublicInbox/RepoGit.pm
index b44457ca..114eb656 100644
--- a/lib/PublicInbox/RepoGit.pm
+++ b/lib/PublicInbox/RepoGit.pm
@@ -50,17 +50,17 @@ sub git_dec_links ($$) {
                         $h = PublicInbox::Hval->utf8($h);
                         my $r = $h->as_href;
                         $h = $h->as_html;
-                        push @l, qq($s -&gt; <a\nhref="${rel}log?h=$r">$h</a>);
+                        push @l, qq($s -&gt; <a\nhref="${rel}log/$r">$h</a>);
                 } elsif (s/\Atag: //) {
                         my $h = PublicInbox::Hval->utf8($_);
                         my $r = $h->as_href;
                         $h = $h->as_html;
-                        push @l, qq(<a\nhref="${rel}tag?h=$r"><b>$h</b></a>);
+                        push @l, qq(<a\nhref="${rel}tag/$r"><b>$h</b></a>);
                 } else {
                         my $h = PublicInbox::Hval->utf8($_);
                         my $r = $h->as_href;
                         $h = $h->as_html;
-                        push @l, qq(<a\nhref="${rel}log?h=$r">$h</a>);
+                        push @l, qq(<a\nhref="${rel}log/$r">$h</a>);
                 }
         }
         @l;