From 35af9136627a290b2f07391bd9abdcc6e414e08b Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 7 Feb 2021 19:47:31 +0100 Subject: /join: Fix autobookmarking (broken when moving bookmarks to async) --- poezio/core/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio') diff --git a/poezio/core/commands.py b/poezio/core/commands.py index a1b6db54..964bd0a7 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -382,7 +382,7 @@ class CommandCore: return (room, set_nick) @command_args_parser.quoted(0, 2) - def join(self, args): + async def join(self, args): """ /join [room][/nick] [password] """ @@ -428,7 +428,7 @@ class CommandCore: if config.get('synchronise_open_rooms') and room not in self.core.bookmarks: method = 'remote' if config.get( 'use_remote_bookmarks') else 'local' - self._add_bookmark( + await self._add_bookmark( room=room, nick=nick if not config_nick else None, autojoin=True, -- cgit v1.2.3