aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-25 21:21:22 +0200
committerKim Alvefur <zash@zash.se>2018-10-25 21:21:22 +0200
commit38758ef986dfa5f5411ae8c11b4f43491cebdf14 (patch)
tree4f62a5baa9011c6c06ebbc07b2ee21dd67bda015 /plugins
parent201dbb74ccd802f0d95595b57b9a7585cf1e4cac (diff)
downloadprosody-38758ef986dfa5f5411ae8c11b4f43491cebdf14.tar.gz
prosody-38758ef986dfa5f5411ae8c11b4f43491cebdf14.zip
mod_muc_mam: Fix missing form container element
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_muc_mam.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua
index 3013bb49..166a5c71 100644
--- a/plugins/mod_muc_mam.lua
+++ b/plugins/mod_muc_mam.lua
@@ -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);