From 318432d561f80051c14135f8ff935e28bde0b603 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 12 Feb 2026 20:44:36 -0500 Subject: [PATCH] Fix undefined reference in Bubble This tends to spam the logs while loading/unloading timelines. --- src/timeline/Bubble.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeline/Bubble.qml b/src/timeline/Bubble.qml index fdac863f3..b76e4d0f8 100644 --- a/src/timeline/Bubble.qml +++ b/src/timeline/Bubble.qml @@ -117,7 +117,7 @@ QQC2.Control { visible: root.showBackground Kirigami.Theme.colorSet: Kirigami.Theme.View Kirigami.Theme.inherit: false - color: if (root.author.isLocalMember && !root.isThreaded) { + color: if ((root.author?.isLocalMember ?? false) && !root.isThreaded) { return Kirigami.ColorUtils.tintWithAlpha(Kirigami.Theme.backgroundColor, Kirigami.Theme.highlightColor, 0.15); } else if (root.showHighlight) { return Kirigami.Theme.positiveBackgroundColor;