mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Handle component connecting to non-existent host
This commit is contained in:
parent
51ab962e55
commit
c1e2674fd4
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ function stream_callbacks.error(session, error, data, data2)
|
|||
end
|
||||
|
||||
function stream_callbacks.streamopened(session, attr)
|
||||
if not hosts[attr.to].modules.component then
|
||||
if not hosts[attr.to] or not hosts[attr.to].modules.component then
|
||||
session:close{ condition = "host-unknown", text = tostring(attr.to).." does not match any configured external components" };
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue