mod_muc_mam: Fix missing form container element

This commit is contained in:
Kim Alvefur 2018-10-25 21:21:22 +02:00
parent 201dbb74cc
commit 38758ef986

View file

@ -98,7 +98,7 @@ local query_form = dataform {
-- Serve form
module:hook("iq-get/bare/"..xmlns_mam..":query", function(event)
local origin, stanza = event.origin, event.stanza;
origin.send(st.reply(stanza):add_child(query_form:form()));
origin.send(st.reply(stanza):tag("query", { xmlns = xmlns_mam }):add_child(query_form:form()));
return true;
end);