about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/View.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 88ab2d2f..70b92a7c 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -469,7 +469,12 @@ sub thread_inline {
         $$dst .= 'Thread: ';
         my $parent = in_reply_to($cur);
         if ($nr <= 1) {
-                $$dst .= "[no followups, yet] ($expand)\n";
+                if (defined $parent) {
+                        $$dst .= "($expand)\n ";
+                        $$dst .= ghost_parent($upfx, $parent) . "\n";
+                } else {
+                        $$dst .= "[no followups, yet] ($expand)\n";
+                }
                 $ctx->{next_msg} = undef;
                 $ctx->{parent_msg} = $parent;
                 return;