Always publish on session_start
The condition wasn't necessary in session_start for PEP nodes not to be published multiple times. This also fixes the fact that we weren't publishing on reconnect. And also fixes one indentation level too many in the _initial_publish method. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
fbe5e36c3e
commit
aa54f58649
1 changed files with 2 additions and 2 deletions
|
@ -265,10 +265,10 @@ class XEP_0384(BasePlugin):
|
|||
self.xmpp['xep_0163'].remove_interest(OMEMO_DEVICES_NS)
|
||||
|
||||
async def session_start(self, _jid):
|
||||
if self.backend_loaded and not self._initial_publish_done:
|
||||
await self._initial_publish()
|
||||
await self._initial_publish()
|
||||
|
||||
async def _initial_publish(self):
|
||||
if self.backend_loaded:
|
||||
self.xmpp['xep_0163'].add_interest(OMEMO_DEVICES_NS)
|
||||
await asyncio.wait([
|
||||
self._set_device_list(),
|
||||
|
|
Loading…
Reference in a new issue