about summary refs log tree commit homepage
path: root/lib/PublicInbox/RepoBase.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-02-11 00:41:29 +0000
committerEric Wong <e@80x24.org>2017-02-11 01:08:08 +0000
commit60f38818f2dbc76e20041cf1b01e2baf3322a1f1 (patch)
tree716820a77859e878a66836309aeefd946b009c5b /lib/PublicInbox/RepoBase.pm
parent416ba2fdab4f6de20ad7ec3656a057bb01b17339 (diff)
downloadpublic-inbox-60f38818f2dbc76e20041cf1b01e2baf3322a1f1.tar.gz
This improves startup speed at the cost of CoW-friendliness
for long-lived daemons (which can be fixed, later).
Diffstat (limited to 'lib/PublicInbox/RepoBase.pm')
-rw-r--r--lib/PublicInbox/RepoBase.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/RepoBase.pm b/lib/PublicInbox/RepoBase.pm
index e60677d6..97f13b25 100644
--- a/lib/PublicInbox/RepoBase.pm
+++ b/lib/PublicInbox/RepoBase.pm
@@ -59,7 +59,7 @@ sub mime_type {
 # starts an HTML page for Repobrowse in a consistent way
 sub html_start {
         my ($self, $req, $title_html, $opts) = @_;
-        my $desc = $req->{repo_info}->{desc_html};
+        my $desc = $req->{repo_info}->desc_html;
         my $meta = '';
 
         if ($opts) {