summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index dc47c003..6a17a7c1 100644
--- a/src/core.py
+++ b/src/core.py
@@ -2304,7 +2304,11 @@ class Core(object):
jid = safeJID(args[0])
if not jid.user and not jid.domain and not jid.resource:
return self.information('Invalid JID.', 'Error')
- tab = self.open_conversation_window(jid.full, focus=True)
+ tab = self.get_conversation_by_jid(jid.full, False)
+ if not tab:
+ tab = self.open_conversation_window(jid.full, focus=True)
+ else:
+ self.focus_tab_named(tab.get_name())
if len(args) > 1:
tab.command_say(args[1])