chiark / gitweb /
*Really* fix that crash on receiving a mention.
authorSimon Tatham <anakin@pobox.com>
Wed, 6 Dec 2023 19:02:19 +0000 (19:02 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 6 Dec 2023 19:02:59 +0000 (19:02 +0000)
Commit 35ba8f325faf3e3 replaced the wrong thing with a different wrong
thing, ahem.

cursesclient.py

index 5ff4eb5329c2662b9055b1695cc2f344b6689a9d..88a2b6c71c0801fbe06e5e211c6390534de3b98f 100644 (file)
@@ -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)