xep_0384: Move publish calls on session_bind
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
0c3946c556
commit
7492508d6c
1 changed files with 2 additions and 2 deletions
|
@ -168,8 +168,6 @@ class XEP_0384(BasePlugin):
|
||||||
|
|
||||||
self.xmpp['xep_0060'].map_node_event(OMEMO_DEVICES_NS, 'omemo_device_list')
|
self.xmpp['xep_0060'].map_node_event(OMEMO_DEVICES_NS, 'omemo_device_list')
|
||||||
self.xmpp.add_event_handler('omemo_device_list_publish', self._receive_device_list)
|
self.xmpp.add_event_handler('omemo_device_list_publish', self._receive_device_list)
|
||||||
asyncio.ensure_future(self._set_device_list())
|
|
||||||
asyncio.ensure_future(self._publish_bundle())
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def plugin_end(self):
|
def plugin_end(self):
|
||||||
|
@ -181,6 +179,8 @@ class XEP_0384(BasePlugin):
|
||||||
|
|
||||||
def session_bind(self, _jid):
|
def session_bind(self, _jid):
|
||||||
self.xmpp['xep_0163'].add_interest(OMEMO_DEVICES_NS)
|
self.xmpp['xep_0163'].add_interest(OMEMO_DEVICES_NS)
|
||||||
|
asyncio.ensure_future(self._set_device_list())
|
||||||
|
asyncio.ensure_future(self._publish_bundle())
|
||||||
|
|
||||||
def my_device_id(self) -> int:
|
def my_device_id(self) -> int:
|
||||||
return self._device_id
|
return self._device_id
|
||||||
|
|
Loading…
Reference in a new issue