Skip to content
Snippets Groups Projects
Commit 7d21a1a6 authored by jimpp's avatar jimpp
Browse files

Fix account parameter for gajim-remote handle_uri with a groupchat. Fixes #3344.

parent 6c9063b7
No related branches found
No related tags found
No related merge requests found
......@@ -523,6 +523,10 @@ class GajimRemote:
sys.argv[2] = jid
if action == 'join':
self.command = sys.argv[1] = 'join_room'
# Move account parameter from position 3 to 5
sys.argv.append('')
sys.argv.append(sys.argv[3])
sys.argv[3] = ''
return
sys.exit(0)
......
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