mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Return extended error condition when not connected
This might be something to write a XEP about.
This commit is contained in:
parent
2f67c339a3
commit
aeaad491d4
1 changed files with 2 additions and 1 deletions
|
@ -132,7 +132,8 @@ function module.add_host(module)
|
|||
end
|
||||
module:log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag());
|
||||
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
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue