From e9585c7ea1a07c984697dc5d45c99bb87b0560b5 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 22 Jul 2018 16:17:28 +0200 Subject: Fix /message --- poezio/core/commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/poezio/core/commands.py b/poezio/core/commands.py index df06c41f..a3466216 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -162,7 +162,7 @@ class CommandCore: log.debug( 'Could not send directed presence to %s', jid, exc_info=True) return - tab = self.core.tabs.by_name_and_class(jid) + tab = self.core.tabs.by_name(jid) if tab: if ptype in ('xa', 'away'): tab.directed_presence = False @@ -939,13 +939,13 @@ class CommandCore: return self.core.information('Invalid JID.', 'Error') tab = self.core.get_conversation_by_jid( jid.full, False, fallback_barejid=False) - muc = self.core.tabs.by_name_and_class(jid.bare, typ=tabs.MucTab) + muc = self.core.tabs.by_name_and_class(jid.bare, tabs.MucTab) if not tab and not muc: tab = self.core.open_conversation_window(jid.full, focus=True) elif muc: if jid.resource: - tab = self.core.tabs.by_name_and_class( - jid.full, typ=tabs.PrivateTab) + tab = self.core.tabs.by_name_and_class(jid.full, + tabs.PrivateTab) if tab: self.core.focus_tab(tab) else: -- cgit v1.2.3