From 167a50eb2e80c0cdf08b7d0608bb509970f9ef5a Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 14 Dec 2023 20:23:25 +0000 Subject: [PATCH] Ahem, fix last minute breakage. --- cursesclient.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cursesclient.py b/cursesclient.py index 38967c0..44a70bf 100644 --- a/cursesclient.py +++ b/cursesclient.py @@ -943,6 +943,8 @@ class UserInfoFile(ObjectFile): name = self.cc.fq(self.account['acct']) title = text.ColouredString(f"Posts from user {name}", 'H') self.chain_to(StatusFile(self.cc, feed, title)) + else: + return super().handle_key(ch) class EditorCommon: # Common editing operations between the post editor and the line editor. -- 2.30.2