From 3b3042d315f68c2a0a140dd2b8e3212158b5c35b Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Mon, 18 Oct 2010 22:57:54 +0000 Subject: fix password for muc. fixed #1940 --- src/gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui.py') diff --git a/src/gui.py b/src/gui.py index 0665c9a8..132bdbc5 100644 --- a/src/gui.py +++ b/src/gui.py @@ -970,10 +970,10 @@ class Gui(object): return room = room.lower() if r and not r.joined: - self.xmpp.plugin['xep_0045'].joinMUC(room, nick, password) + muc.join_groupchat(self.xmpp, room, nick, password) if not r: # if the room window exists, we don't recreate it. self.open_new_room(room, nick) - self.xmpp.plugin['xep_0045'].joinMUC(room, nick, password) + muc.join_groupchat(self.xmpp, room, nick, password) else: r.own_nick = nick r.users = [] -- cgit v1.2.3