Skip to content
Snippets Groups Projects
Commit b7567384 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix traceback. Fixes #7340

parent dc64ac80
No related branches found
No related tags found
No related merge requests found
...@@ -988,7 +988,8 @@ class ChatControlBase(MessageControl, ChatCommandProcessor, CommandTools): ...@@ -988,7 +988,8 @@ class ChatControlBase(MessageControl, ChatCommandProcessor, CommandTools):
return return
if kind in ('incoming', 'outgoing'): if kind in ('incoming', 'outgoing'):
self.last_received_txt[name] = text self.last_received_txt[name] = text
self.last_received_id[name] = correct_id[0] if correct_id:
self.last_received_id[name] = correct_id[0]
if kind == 'incoming': if kind == 'incoming':
if not self.type_id == message_control.TYPE_GC or \ if not self.type_id == message_control.TYPE_GC or \
gajim.config.get('notify_on_all_muc_messages') or \ gajim.config.get('notify_on_all_muc_messages') or \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment