omemo: session_start is now async
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
1dd713b857
commit
4586765793
1 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
|||
"""
|
||||
|
||||
import os
|
||||
import asyncio
|
||||
import logging
|
||||
|
||||
from poezio.plugin_e2ee import E2EEPlugin
|
||||
|
@ -55,7 +56,9 @@ class Plugin(E2EEPlugin):
|
|||
except (PluginCouldNotLoad,):
|
||||
log.exception('And error occured when loading the omemo plugin.')
|
||||
|
||||
self.core.xmpp['xep_0384'].session_start(self.core.xmpp.boundjid)
|
||||
asyncio.ensure_future(
|
||||
self.core.xmpp['xep_0384'].session_start(self.core.xmpp.boundjid)
|
||||
)
|
||||
|
||||
def display_error(self, txt) -> None:
|
||||
self.api.information(txt, 'Error')
|
||||
|
|
Loading…
Reference in a new issue