From 1ef087ca75ec28b7d5fc26b785699116f9f2907a Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 27 Apr 2005 20:12:57 +0000 Subject: [PATCH] bugfix (now self.account) --- src/dialogs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index 933a4a676..90ccae84a 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -531,8 +531,8 @@ class Join_groupchat_window: self.recently_groupchat = self.recently_groupchat[0:10] gajim.config.set('recently_groupchat', ' '.join(self.recently_groupchat)) self.plugin.roster.new_room(jid, nickname, self.account) - self.plugin.windows[account]['gc'][jid].active_tab(jid) - self.plugin.windows[account]['gc'][jid].window.present() + self.plugin.windows[self.account]['gc'][jid].active_tab(jid) + self.plugin.windows[self.account]['gc'][jid].window.present() gajim.connections[self.account].join_gc(nickname, room, server, password) self.window.destroy()