Skip to content
Snippets Groups Projects
Commit aeb598ac authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

let's be compatible with XEP-0184 v1.0.

parent 0b5846d1
No related branches found
No related tags found
No related merge requests found
......@@ -1005,8 +1005,11 @@ class ConnectionHandlersBase:
# We got our message's receipt
if obj.receipt_received_tag and obj.session.control and \
gajim.config.get_per('accounts', self.name, 'request_receipt'):
obj.session.control.conv_textview.hide_xep0184_warning(
obj.receipt_received_tag.getAttr('id'))
id_ = obj.receipt_received_tag.getAttr('id')
if not id_:
# old XEP implementation
id_ = obj.id_
obj.session.control.conv_textview.hide_xep0184_warning(id_)
if obj.mtype == 'error':
if not obj.msgtxt:
......
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