Skip to content
Snippets Groups Projects
Commit cb1fccca authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

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

parent 70e145a8
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment