summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index 36be6124..20b41d00 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1122,6 +1122,8 @@ class Core(object):
if r and r.joined: # if we are already in the room
self.focus_tab_named(r.name)
return
+ if room.startswith('@'):
+ room = room[1:]
room = room.lower()
if r and not r.joined:
muc.join_groupchat(self.xmpp, room, nick, password, histo_length)