From 1fe6160cfc5ee86bd6582195a7f7b49a81170eaa Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 17 Jan 2011 15:54:11 +0100 Subject: /join @server.tld now works. fixed #2038 --- src/core.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') 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) -- cgit v1.2.3