mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc_mam: Fix missing form container element
This commit is contained in:
parent
201dbb74cc
commit
38758ef986
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue