about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-08-17 02:41:09 +0000
committerEric Wong <e@80x24.org>2015-08-17 03:13:29 +0000
commitfaa0459760f4f9b37bd6beba5087eb70d06fd973 (patch)
treec761dff4aafdf8e34844452ce8e95fd8c1308879 /lib
parent497fd31fce317a99daa2e2b8713572f383602ecd (diff)
downloadpublic-inbox-faa0459760f4f9b37bd6beba5087eb70d06fd973.tar.gz
We no longer do "smart" time displays as of
commit ea0e8649f90d1fd0850a41c0ca16642faadf4f14
("view: simplify timestamp generation").

In retrospect, that commit also made us more cache-friendly, too.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/Feed.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm
index b5325597..1a89fbad 100644
--- a/lib/PublicInbox/Feed.pm
+++ b/lib/PublicInbox/Feed.pm
@@ -76,7 +76,7 @@ sub generate_html_index {
         $th->order(*PublicInbox::Thread::sort_ts);
 
         # except we sort top-level messages reverse chronologically
-        my $state = [ time, {}, $first, 0 ];
+        my $state = [ undef, {}, $first, 0 ];
         for (PublicInbox::Thread::rsort_ts($th->rootset)) {
                 dump_msg($_, 0, \$html, $state)
         }