diff options
author | Madhur Garg <madhurgarg96@gmail.com> | 2019-08-02 01:57:36 +0530 |
---|---|---|
committer | Madhur Garg <madhurgarg96@gmail.com> | 2019-08-02 01:57:36 +0530 |
commit | 027ce2434d7fd3cf4a286dd373cb761c0d114c66 (patch) | |
tree | b7cd5a95fff0fe879f71c5ea55fe8bf09157aadb | |
parent | 85cd7a9166db2e6e8c249ad0c01937bc52a5ba1f (diff) | |
download | slixmpp-027ce2434d7fd3cf4a286dd373cb761c0d114c66.tar.gz slixmpp-027ce2434d7fd3cf4a286dd373cb761c0d114c66.tar.bz2 slixmpp-027ce2434d7fd3cf4a286dd373cb761c0d114c66.tar.xz slixmpp-027ce2434d7fd3cf4a286dd373cb761c0d114c66.zip |
Removed 'block' from set_preferences as it was giving a TypeError while sending the staza.
-rw-r--r-- | slixmpp/plugins/xep_0313/mam.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0313/mam.py b/slixmpp/plugins/xep_0313/mam.py index 8e92bc2b..f78b62fa 100644 --- a/slixmpp/plugins/xep_0313/mam.py +++ b/slixmpp/plugins/xep_0313/mam.py @@ -98,7 +98,7 @@ class XEP_0313(BasePlugin): return iq.send(timeout=timeout, callback=callback) def set_preferences(self, jid=None, default=None, always=None, never=None, - ifrom=None, block=True, timeout=None, callback=None): + ifrom=None, timeout=None, callback=None): iq = self.xmpp.Iq() iq['type'] = 'set' iq['to'] = jid @@ -106,7 +106,7 @@ class XEP_0313(BasePlugin): iq['mam_prefs']['default'] = default iq['mam_prefs']['always'] = always iq['mam_prefs']['never'] = never - return iq.send(block=block, timeout=timeout, callback=callback) + return iq.send(timeout=timeout, callback=callback) def get_configuration_commands(self, jid, **kwargs): return self.xmpp['xep_0030'].get_items( |