mod_component: Don't return error reply for errors, fixes #1897

This commit is contained in:
Kim Alvefur 2025-02-22 21:48:07 +01:00
parent 68296b6a8e
commit e52cc0126d

View file

@ -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