# HG changeset patch # User Kim Alvefur # Date 1604609508 -3600 # Node ID f31eac6b2e9c474a07ae668a52557e9ec98b3276 # Parent db75772afb2872eeb76ee849a86ff9941ac70d6a mod_pubsub_text_interface: Remove receipt handling (thanks meaz) This apparenly breaks Gajim, which seems to stop processing of the reply message after noting the receipt. diff -r db75772afb28 -r f31eac6b2e9c mod_pubsub_text_interface/mod_pubsub_text_interface.lua --- a/mod_pubsub_text_interface/mod_pubsub_text_interface.lua Wed Oct 28 20:38:38 2020 +0100 +++ b/mod_pubsub_text_interface/mod_pubsub_text_interface.lua Thu Nov 05 21:51:48 2020 +0100 @@ -86,10 +86,6 @@ end reply:reset(); - if stanza:get_child("request", "urn:xmpp:receipts") then - reply:tag("received", { xmlns = "urn:xmpp:receipts", id = stanza.attr.id }):up(); - end - if stanza:get_child("no-copy", "urn:xmpp:hints") then reply:tag("no-copy", { xmlns = "urn:xmpp:hints" }):up(); end