mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 13:17:38 +03:00
mod_component: Don't return error reply for errors, fixes #1897
This commit is contained in:
parent
68296b6a8e
commit
e52cc0126d
1 changed files with 3 additions and 1 deletions
|
@ -239,7 +239,9 @@ function stream_callbacks.handlestanza(session, stanza)
|
|||
end
|
||||
if not stanza.attr.to then
|
||||
session.log("warn", "Rejecting stanza with no 'to' address");
|
||||
session.send(st.error_reply(stanza, "modify", "bad-request", "Components MUST specify a 'to' address on stanzas"));
|
||||
if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
|
||||
session.send(st.error_reply(stanza, "modify", "bad-request", "Components MUST specify a 'to' address on stanzas"));
|
||||
end
|
||||
return;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue