aboutsummaryrefslogtreecommitdiffstats
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
commitce457ad64525b2d97949dd2cb6b46e2099c579ee (patch)
tree8e7594764431764842c6ef1afbd1e3cfd8edc508
parent593c4cd45ec6e9d7aa20e81a57edadb291fec023 (diff)
downloadprosody-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.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 }));