Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2022-09-26 17:51:05 +0300
committerwurstsalat <mailtrash@posteo.de>2022-09-26 17:51:08 +0300
commit337fb835b3c82869526822106299d2c01ae8f355 (patch)
tree5d7856017ce00c00c4002e3df7e119685aa9a9f6
parent1960941c7080b1c85f53a2c41c5f8cd4b651fc75 (diff)
fix: ChatList: Set message_id correctly
Fixes #11168
-rw-r--r--gajim/gtk/chat_list.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gajim/gtk/chat_list.py b/gajim/gtk/chat_list.py
index 44002fd80..a39d888a0 100644
--- a/gajim/gtk/chat_list.py
+++ b/gajim/gtk/chat_list.py
@@ -539,8 +539,9 @@ class ChatList(Gtk.ListBox, EventHelper):
row.set_timestamp(event.properties.mam.timestamp)
else:
row.set_timestamp(event.properties.timestamp)
+
row.set_stanza_id(event.stanza_id)
- row.set_message_id(event.unique_id)
+ row.set_message_id(event.properties.id)
row.set_message_text(
event.msgtxt,
nickname=nick,