diff options
-rw-r--r-- | poezio/core/commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 792474a6..e3c3998f 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -280,6 +280,7 @@ class CommandCore: jid = self.core.tabs.current_tab.jid if jid is None or not jid.domain: return None + jid = JID(jid.domain) list_tab = tabs.MucListTab(self.core, jid) self.core.add_tab(list_tab, True) cb = list_tab.on_muc_list_item_received |