aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_mam
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-01-29 17:01:05 +0100
committerKim Alvefur <zash@zash.se>2021-01-29 17:01:05 +0100
commit5761d5a6803423fed8e6f718982db417f3ecaba8 (patch)
tree8e7594764431764842c6ef1afbd1e3cfd8edc508 /plugins/mod_mam
parent88ce2f1c9449842ade27b2834a06b1b596a1bf2a (diff)
downloadprosody-5761d5a6803423fed8e6f718982db417f3ecaba8.tar.gz
prosody-5761d5a6803423fed8e6f718982db417f3ecaba8.zip
mod_mam: Remove obsolete 'queryid' attribute from iq-result (thanks paul)
Mentioned in xmpp:xsf@muc.xmpp.org?join
Diffstat (limited to 'plugins/mod_mam')
-rw-r--r--plugins/mod_mam/mod_mam.lua2
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 }));