mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Specify an error source for Component unavailable errors
It is somewhat ambiguous where an error really comes from in the case of an external component. Setting by to the bare host at least distinguishes it from JIDs with a node- or resourcepart.
This commit is contained in:
parent
1f92aa9280
commit
608d6dd756
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ 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", "service-unavailable", "Component unavailable"));
|
||||
event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable", module.host));
|
||||
end
|
||||
end
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue