From 831511b2cb1a6d8d7de889f3f3d6b76d66d54d59 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 24 Jan 2008 12:16:17 +0000 Subject: [PATCH] use correct function to open a groupchat from gajim-remote. fixes #3705 --- src/remote_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote_control.py b/src/remote_control.py index 923217e63..5049c5606 100644 --- a/src/remote_control.py +++ b/src/remote_control.py @@ -657,4 +657,4 @@ class SignalObject(dbus.service.Object): gajim.interface.instances[account]['join_gc'] = \ JoinGroupchatWindow(account, room_jid, nick) else: - gajim.connections[account].join_gc(nick, room_jid, password) + gajim.interface.roster.join_gc_room(account, room_jid, nick, password)