Philipp Hörist pushed to branch master at gajim / gajim

Commits:
bd8486f8 by Philipp Hörist at 2018-08-18T13:52:12Z
Fix arguments in method call

- - - - -


1 changed file:

- gajim/chat_control_base.py


Changes:

=====================================
gajim/chat_control_base.py
=====================================
--- a/gajim/chat_control_base.py
+++ b/gajim/chat_control_base.py
@@ -1237,7 +1237,8 @@ class ChatControlBase(MessageControl, 
ChatCommandProcessor, CommandTools):
                 if not app.events.remove_events(self.account, jid,
                 types=types_list):
                     self.redraw_after_event_removed(jid)
-            elif not app.events.remove_events(types_list):
+            elif not app.events.remove_events(
+                    self.account, jid, types=types_list):
                 # There were events to remove
                 self.redraw_after_event_removed(jid)
 



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/commit/bd8486f822ef50c787e60f5c4e8cf6902a1e72de

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/commit/bd8486f822ef50c787e60f5c4e8cf6902a1e72de
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to