fix /join command to use the same account as the one we're connected in the current room.
This commit is contained in:
parent
70e145a827
commit
cb1fccca7c
|
@ -192,7 +192,8 @@ class GroupChatCommands(CommonCommands):
|
||||||
gajim.interface.instances[self.account]['join_gc'].window.present()
|
gajim.interface.instances[self.account]['join_gc'].window.present()
|
||||||
except KeyError:
|
except KeyError:
|
||||||
try:
|
try:
|
||||||
dialogs.JoinGroupchatWindow(account=None, room_jid=jid, nick=nick)
|
dialogs.JoinGroupchatWindow(account=self.account, room_jid=jid,
|
||||||
|
nick=nick)
|
||||||
except GajimGeneralException:
|
except GajimGeneralException:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue