From 33a83e0701e98b222ba5443963bcdf25b2461e8b Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 31 Aug 2019 14:55:16 +0300 Subject: [PATCH] Fix starting syncing when there's no avatar set --- maubot/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maubot/client.py b/maubot/client.py index 6edc2f5..2b6adfe 100644 --- a/maubot/client.py +++ b/maubot/client.py @@ -120,7 +120,7 @@ class Client: await self.client.set_displayname(self.displayname) if self.avatar_url != "disable": await self.client.set_avatar_url(self.avatar_url) - self.start_sync() + self.start_sync() await self._update_remote_profile() self.started = True self.log.info("Client started, starting plugin instances...")