Skip to content
Snippets Groups Projects
Commit 1514beca authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

fix: Chat Markers: Don’t send marker for outgoing messages

Fixes #11043
parent 059680f4
No related branches found
No related tags found
No related merge requests found
...@@ -1134,7 +1134,7 @@ def add_message(self, ...@@ -1134,7 +1134,7 @@ def add_message(self,
else: else:
self._jump_to_end_button.add_unread_count() self._jump_to_end_button.add_unread_count()
if message_id: if message_id and kind == 'incoming':
if self.is_groupchat: if self.is_groupchat:
self.last_msg_id = stanza_id or message_id self.last_msg_id = stanza_id or message_id
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment