diff options
-rw-r--r-- | poezio/tabs/muctab.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 21e8997d..ace0df99 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -1504,7 +1504,8 @@ class MucTab(ChatTab): def on_close(self): super().on_close() - self.leave_room('') + if self.joined: + self.leave_room('') @command_args_parser.quoted(1, 1) def command_query(self, args): |