From 1514becae21286a3763927d9f24b258531762afc Mon Sep 17 00:00:00 2001 From: wurstsalat <mailtrash@posteo.de> Date: Sun, 24 Jul 2022 12:41:44 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Chat=20Markers:=20Don=E2=80=99t=20send?= =?UTF-8?q?=20marker=20for=20outgoing=20messages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #11043 --- gajim/gtk/controls/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/gtk/controls/base.py b/gajim/gtk/controls/base.py index 2fdbc29ac4..43f6d15da9 100644 --- a/gajim/gtk/controls/base.py +++ b/gajim/gtk/controls/base.py @@ -1134,7 +1134,7 @@ def add_message(self, else: self._jump_to_end_button.add_unread_count() - if message_id: + if message_id and kind == 'incoming': if self.is_groupchat: self.last_msg_id = stanza_id or message_id else: -- GitLab