diff options
author | mathieui <mathieui@mathieui.net> | 2020-12-06 18:57:50 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-12-06 18:59:59 +0100 |
commit | c89a21463f0b58be377d5775529d5ddd71889f4c (patch) | |
tree | 4d6a141bc697d4ded4541344d1192be7b248cdfc | |
parent | 1836b2b887a467afffe6e5e7ab408ffb55aa7c00 (diff) | |
download | slixmpp-c89a21463f0b58be377d5775529d5ddd71889f4c.tar.gz slixmpp-c89a21463f0b58be377d5775529d5ddd71889f4c.tar.bz2 slixmpp-c89a21463f0b58be377d5775529d5ddd71889f4c.tar.xz slixmpp-c89a21463f0b58be377d5775529d5ddd71889f4c.zip |
XEP-0444: fix a mistake in plugin_end
-rw-r--r-- | slixmpp/plugins/xep_0444/reactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0444/reactions.py b/slixmpp/plugins/xep_0444/reactions.py index e65f5e8f..37ab7d55 100644 --- a/slixmpp/plugins/xep_0444/reactions.py +++ b/slixmpp/plugins/xep_0444/reactions.py @@ -38,7 +38,7 @@ class XEP_0444(BasePlugin): def plugin_end(self): self.xmpp.remove_handler('Reaction received') - self.xmpp['xep_0030'].del_feature(stanza.NS) + self.xmpp['xep_0030'].del_feature(feature=stanza.NS) def _handle_reactions(self, message: Message): self.xmpp.event('reactions', message) |