# HG changeset patch # User Holger Weiss # Date 1628270743 -7200 # Node ID 5f99aa6bb76df85903f4baf2c785824cf66f3648 # Parent 856dada099fab3f804fe864a19fe92f02ec09522 mod_muc_mam: Omit queryid attribute from Since version 0.4 of XEP-0313, the element is sent with the IQ result and no longer has a queryid attribute. diff -r 856dada099fa -r 5f99aa6bb76d plugins/mod_muc_mam.lua --- 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 }));