mirror of
https://github.com/paul-nameless/tg
synced 2025-02-16 18:48:24 +00:00
Fix after merge invalid self.current_msg usage
This commit is contained in:
parent
0c00820806
commit
cd3cb13dca
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class Model:
|
|||
|
||||
def view_current_msg(self):
|
||||
chat_id = self.chats.id_by_index(self.current_chat)
|
||||
msg = MsgProxy(self.current_msg())
|
||||
msg = MsgProxy(self.current_msg)
|
||||
msg_id = msg["id"]
|
||||
self.tg.view_messages(chat_id, [msg_id])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue