diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-29 17:01:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-29 17:01:05 +0100 |
commit | ce457ad64525b2d97949dd2cb6b46e2099c579ee (patch) | |
tree | 8e7594764431764842c6ef1afbd1e3cfd8edc508 | |
parent | 593c4cd45ec6e9d7aa20e81a57edadb291fec023 (diff) | |
download | prosody-ce457ad64525b2d97949dd2cb6b46e2099c579ee.tar.gz prosody-ce457ad64525b2d97949dd2cb6b46e2099c579ee.zip |
mod_mam: Remove obsolete 'queryid' attribute from iq-result (thanks paul)
Mentioned in xmpp:xsf@muc.xmpp.org?join
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index b5e756e3..bd4ba64a 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -233,7 +233,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) end origin.send(st.reply(stanza) - :tag("fin", { xmlns = xmlns_mam, queryid = qid, complete = complete }) + :tag("fin", { xmlns = xmlns_mam, complete = complete }) :add_child(rsm.generate { first = first, last = last, count = total })); |