Software /
code /
prosody
Changeset
11744:5f99aa6bb76d
mod_muc_mam: Omit queryid attribute from <fin/>
Since version 0.4 of XEP-0313, the <fin/> element is sent with the IQ
result and no longer has a queryid attribute.
author | Holger Weiss <holger@zedat.fu-berlin.de> |
---|---|
date | Fri, 06 Aug 2021 19:25:43 +0200 |
parents | 11743:856dada099fa |
children | 11745:3a2d58a39872 |
files | plugins/mod_muc_mam.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_muc_mam.lua Mon Aug 16 20:15:38 2021 +0200 +++ b/plugins/mod_muc_mam.lua Fri Aug 06 19:25:43 2021 +0200 @@ -273,7 +273,7 @@ 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 }));