aboutsummaryrefslogtreecommitdiffstats
path: root/net/xmppcomponent_listener.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-03-14 03:04:04 +0000
committerMatthew Wild <mwild1@gmail.com>2010-03-14 03:04:04 +0000
commit6550edee36ee362d2373d8c98e0b40d4635e1f14 (patch)
treef20ffd10c37bdae9d76177e03e00b0e4f3493048 /net/xmppcomponent_listener.lua
parent4481ea54a304192f483ad704ba75ffd4398ec541 (diff)
downloadprosody-6550edee36ee362d2373d8c98e0b40d4635e1f14.tar.gz
prosody-6550edee36ee362d2373d8c98e0b40d4635e1f14.zip
net.xmppcomponent_listener: Don't handle stream errors from component sessions that have already been destroyed
Diffstat (limited to 'net/xmppcomponent_listener.lua')
-rw-r--r--net/xmppcomponent_listener.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/xmppcomponent_listener.lua b/net/xmppcomponent_listener.lua
index 2483d48a..056eb0a2 100644
--- a/net/xmppcomponent_listener.lua
+++ b/net/xmppcomponent_listener.lua
@@ -37,6 +37,7 @@ local stream_callbacks = { default_ns = xmlns_component };
local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
function stream_callbacks.error(session, error, data, data2)
+ if session.destroyed then return; end
log("warn", "Error processing component stream: "..tostring(error));
if error == "no-stream" then
session:close("invalid-namespace");