Merge branch 'fix-reconnect' into 'master'
Fix 'disconnected' event handler order for /quit See merge request poezio/poezio!73
This commit is contained in:
commit
854bb0cedb
1 changed files with 1 additions and 1 deletions
|
@ -1035,9 +1035,9 @@ class CommandCore:
|
|||
self.core.xmpp.plugin['xep_0196'].stop()
|
||||
self.core.save_config()
|
||||
self.core.plugin_manager.disable_plugins()
|
||||
self.core.disconnect(msg)
|
||||
self.core.xmpp.add_event_handler(
|
||||
"disconnected", self.core.exit, disposable=True)
|
||||
self.core.disconnect(msg)
|
||||
|
||||
@command_args_parser.quoted(0, 1, [''])
|
||||
def destroy_room(self, args: List[str]) -> None:
|
||||
|
|
Loading…
Reference in a new issue