mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc_mam: Handle form identification error (e.g. not a form at all)
This commit is contained in:
parent
4b548a129b
commit
5b06f8946f
1 changed files with 4 additions and 1 deletions
|
@ -145,7 +145,10 @@ module:hook("iq-set/bare/"..xmlns_mam..":query", function(event)
|
|||
local form = query:get_child("x", "jabber:x:data");
|
||||
if form then
|
||||
local form_type, err = get_form_type(form);
|
||||
if form_type ~= xmlns_mam then
|
||||
if not form_type then
|
||||
origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid dataform: "..err));
|
||||
return true;
|
||||
elseif form_type ~= xmlns_mam then
|
||||
origin.send(st.error_reply(stanza, "modify", "bad-request", "Unexpected FORM_TYPE, expected '"..xmlns_mam.."'"));
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue