Philipp Hörist pushed to branch master at gajim / gajim


Commits:
337fb835 by wurstsalat at 2022-09-26T16:51:08+02:00
fix: ChatList: Set message_id correctly

Fixes #11168

- - - - -


1 changed file:

- gajim/gtk/chat_list.py


Changes:

=====================================
gajim/gtk/chat_list.py
=====================================
@@ -539,8 +539,9 @@ def _on_message_received(self, event: MessageEventT) -> 
None:
             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,



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/337fb835b3c82869526822106299d2c01ae8f355

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/337fb835b3c82869526822106299d2c01ae8f355
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
Commits@gajim.org
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to