From 5a5736bb3c06b3a1d31c5db46cb41f8d8e491aa1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 29 Jun 2011 00:13:22 +0200 Subject: Fixes #2220 (that was hard) --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core.py b/src/core.py index c4c0edaa..52b783bb 100644 --- a/src/core.py +++ b/src/core.py @@ -1240,6 +1240,7 @@ class Core(object): else: # no server could be found, print a message and return self.information(_("You didn't specify a server for the room you want to join"), 'Error') return + room = room.lower() r = self.get_room_by_name(room) if len(args) == 2: # a password is provided password = args[1] @@ -1248,7 +1249,6 @@ class Core(object): return if room.startswith('@'): room = room[1:] - room = room.lower() current_status = self.get_status() if r and not r.joined: muc.join_groupchat(self.xmpp, room, nick, password, -- cgit v1.2.3