fix /join command to use the same account as the one we're connected in the current room.

This commit is contained in:
Yann Leboulanger 2009-09-23 21:35:27 +02:00
parent 70e145a827
commit cb1fccca7c
1 changed files with 2 additions and 1 deletions

View File

@ -192,7 +192,8 @@ class GroupChatCommands(CommonCommands):
gajim.interface.instances[self.account]['join_gc'].window.present()
except KeyError:
try:
dialogs.JoinGroupchatWindow(account=None, room_jid=jid, nick=nick)
dialogs.JoinGroupchatWindow(account=self.account, room_jid=jid,
nick=nick)
except GajimGeneralException:
pass