diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-22 16:35:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-22 16:35:26 +0100 |
commit | c1e2674fd4b5dd08abe07e9f3bbf92d34c096c56 (patch) | |
tree | 2c4cd8df96e861f9606f711bccf0c5bcdc9cb32b | |
parent | 51ab962e5540b1af96170b7801135f768f4c75cf (diff) | |
download | prosody-c1e2674fd4b5dd08abe07e9f3bbf92d34c096c56.tar.gz prosody-c1e2674fd4b5dd08abe07e9f3bbf92d34c096c56.zip |
mod_component: Handle component connecting to non-existent host
-rw-r--r-- | plugins/mod_component.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index 96d55e40..5b1eefc7 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -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 |