mod_component: Return extended error condition when not connected

This might be something to write a XEP about.
This commit is contained in:
Kim Alvefur 2020-04-13 02:49:19 +02:00
parent 2f67c339a3
commit aeaad491d4

View file

@ -132,7 +132,8 @@ function module.add_host(module)
end end
module:log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag()); module:log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag());
if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
event.origin.send(st.error_reply(stanza, "wait", "remote-server-timeout", "Component unavailable", module.host)); event.origin.send(st.error_reply(stanza, "wait", "remote-server-timeout", "Component unavailable", module.host)
:tag("not-connected", { xmlns = "xmpp:prosody.im/protocol/component" }));
end end
end end
return true; return true;