From c5f3aa169fd133a6f2c61aa8a226b36afc962a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 28 Feb 2018 17:58:26 +0100 Subject: [PATCH] Set correct kind on incoming MAM messages --- gajim/chat_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/chat_control.py b/gajim/chat_control.py index 560e73b95..61076cf60 100644 --- a/gajim/chat_control.py +++ b/gajim/chat_control.py @@ -815,7 +815,7 @@ class ChatControl(ChatControlBase): if obj.with_ != self.contact.jid: return - kind = 'incoming' + kind = '' # incoming if obj.kind == KindConstant.CHAT_MSG_SENT: kind = 'outgoing'