From f6abbda1e3eb2fae548a47ec7a0f00e8473e75fc Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 20 Feb 2026 16:16:09 -0500 Subject: [PATCH] Don't claim this is "the beginning of the chat" if a predecessor exists This could be percieved as confusing since we show a nice blue banner saying where to find the previous conversation. --- src/timeline/TimelineEndDelegate.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/timeline/TimelineEndDelegate.qml b/src/timeline/TimelineEndDelegate.qml index c5d836a29..bc5af079c 100644 --- a/src/timeline/TimelineEndDelegate.qml +++ b/src/timeline/TimelineEndDelegate.qml @@ -89,6 +89,8 @@ TimelineDelegate { text: i18n("This is the beginning of the chat. There are no historical messages beyond this point.") wrapMode: Text.Wrap + visible: !root.room.predecessorId + onLinkActivated: link => UrlHelper.openUrl(link) } }