# HG changeset patch # User Goffi # Date 1678465365 -3600 # Node ID cd6f70015738ab8f3655232719f305a7306f705b # Parent 1a77e1f866f9764222a24a63ba798e0a8c3ed21c plugin XEP-0384: run `profileConnected` workflow in background: XEP-0384 connection workflow can be very long when connecting after a while (due to OLDMEMO migration notably), which can lead to bad UX. It is not necessary to `await` it as `encrypt` and `decrypt` already wait for the plugin to be initialized correctly, so the workflow is now run in background. diff -r 1a77e1f866f9 -r cd6f70015738 sat/plugins/plugin_xep_0384.py --- a/sat/plugins/plugin_xep_0384.py Fri Mar 10 17:22:45 2023 +0100 +++ b/sat/plugins/plugin_xep_0384.py Fri Mar 10 17:22:45 2023 +0100 @@ -1622,7 +1622,7 @@ else: self.__text_commands.registerTextCommands(self) - async def profileConnected( # pylint: disable=invalid-name + def profileConnected( # pylint: disable=invalid-name self, client: SatXMPPClient ) -> None: @@ -1630,9 +1630,9 @@ @param client: The client. """ - await self.get_session_manager( + defer.ensureDeferred(self.get_session_manager( cast(str, client.profile) - ) + )) async def cmd_omemo_reset( self,