From c2012d6394e2106c067c7537e01d1d9a0a377672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 7 Oct 2018 13:49:55 +0200 Subject: [PATCH] GajimRemote: Fix chatstate-received callback --- gajim/remote_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/remote_control.py b/gajim/remote_control.py index 69b662494..08904e6f3 100644 --- a/gajim/remote_control.py +++ b/gajim/remote_control.py @@ -324,7 +324,7 @@ class GajimRemote(Server): self.on_message_sent) def on_chatstate_received(self, obj): - self.raise_signal('ChatState', (obj.conn.name, [ + self.raise_signal('ChatState', (obj.account, [ obj.jid, obj.fjid, obj.stanza, obj.resource, obj.chatstate])) def on_message_sent(self, obj):