From: Simon Tatham Date: Wed, 6 Dec 2023 19:02:19 +0000 (+0000) Subject: *Really* fix that crash on receiving a mention. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=a3b1dc1b958d6cb68a912684571917215a7987e4;p=mastodonochrome.git *Really* fix that crash on receiving a mention. Commit 35ba8f325faf3e3 replaced the wrong thing with a different wrong thing, ahem. --- 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)