From 48a5b3e769783944106a569ebbd25ad82da1a4bf Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 25 Mar 2021 22:20:43 +0100 Subject: fix: last_sent_message for conversation tab --- poezio/tabs/conversationtab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio') diff --git a/poezio/tabs/conversationtab.py b/poezio/tabs/conversationtab.py index 2c0d9429..fc89146e 100644 --- a/poezio/tabs/conversationtab.py +++ b/poezio/tabs/conversationtab.py @@ -123,7 +123,7 @@ class ConversationTab(OneToOneTab): return replaced = False if correct or msg['replace']['id']: - msg['replace']['id'] = self.last_sent_message['id'] + msg['replace']['id'] = self.last_sent_message['id'] # type: ignore else: del msg['replace'] if msg['body'].find('\x19') != -1: -- cgit v1.2.3