From a393b36a3f27d3cbd13276392cc5e865aff9516f Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 13 Jan 2010 12:25:44 +0100 Subject: [PATCH] open chat control with correct resource when we receive a voice call. --- src/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs.py b/src/dialogs.py index 25b0c621f..555a897ca 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -4791,7 +4791,7 @@ class VoIPCallReceivedDialog(object): contact = gajim.contacts.get_contact(self.account, jid) if not contact: return - ctrl = gajim.interface.new_chat(contact, self.account) + ctrl = gajim.interface.new_chat(contact, self.account, resource) # Chat control opened, update content's status if session.get_content('audio'): ctrl.set_audio_state('connecting', self.sid)