From 371ad20ca715c9b1cd0a4d34559758638f3e2427 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 14 Jul 2019 13:25:22 +0200 Subject: [PATCH] =?UTF-8?q?Do=20not=20add=20disco#info=20for=20occupantid,?= =?UTF-8?q?=20it=E2=80=99s=20a=20server=20thing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slixmpp/plugins/protoxep_occupantid/occupantid.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/slixmpp/plugins/protoxep_occupantid/occupantid.py b/slixmpp/plugins/protoxep_occupantid/occupantid.py index 2c7827fb..7f4a9d4a 100644 --- a/slixmpp/plugins/protoxep_occupantid/occupantid.py +++ b/slixmpp/plugins/protoxep_occupantid/occupantid.py @@ -15,13 +15,9 @@ from slixmpp.plugins.protoxep_occupantid import stanza class XEP_OccupantID(BasePlugin): name = 'protoxep_occupantid' description = 'XEP-XXXX: Anonymous unique occupant identifiers for MUCs' - dependencies = {'xep_0030'} + dependencies = set() stanza = stanza def plugin_init(self): - self.xmpp['xep_0030'].add_feature('urn:xmpp:occupant-id:0') register_stanza_plugin(Message, stanza.OccupantID) register_stanza_plugin(Presence, stanza.OccupantID) - - def plugin_end(self): - self.xmpp['xep_0030'].remove_feature('urn:xmpp:occupant-id:0')