about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/View.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 62bdf0a1..47a2046e 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -458,7 +458,8 @@ sub thread_html {
         $ctx->{prev_level} = 0;
         $ctx->{root_anchor} = anchor_for($mid);
         $ctx->{mapping} = {};
-        $ctx->{s_nr} = "$nr+ messages in thread";
+        $ctx->{s_nr} = ($nr > 1 ? "$nr+ messages" : 'only message')
+                       .' in thread';
 
         my $rootset = thread_results($ctx, $msgs);