From a3b1dc1b958d6cb68a912684571917215a7987e4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 6 Dec 2023 19:02:19 +0000 Subject: [PATCH] *Really* fix that crash on receiving a mention. Commit 35ba8f325faf3e3 replaced the wrong thing with a different wrong thing, ahem. --- cursesclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cursesclient.py b/cursesclient.py index 5ff4eb5..88a2b6c 100644 --- a/cursesclient.py +++ b/cursesclient.py @@ -154,7 +154,7 @@ class CursesUI(client.Client): # topmost activity is uninterruptible, e.g. an editor if not any(a is self.mentions_feed for a in self.activity_stack): - self.activity_stack.append(mentions_feed) + self.activity_stack.append(self.mentions_timeline) self.add_streaming_selfpipe("streaming/user", extend_both) -- 2.30.2