diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/handlers.py b/src/core/handlers.py index e34d0554..f2df9a70 100644 --- a/src/core/handlers.py +++ b/src/core/handlers.py @@ -1005,7 +1005,7 @@ def on_session_start(self, event): if config.get('enable_user_nick'): self.xmpp.plugin['xep_0172'].publish_nick(nick=self.own_nick, callback=dumb_callback) - self.xmpp.plugin['xep_0115'].update_caps() + asyncio.async(self.xmpp.plugin['xep_0115'].update_caps()) # Start the ping's plugin regular event self.xmpp.set_keepalive_values() |