s2smanager: Only send reply </stream:stream> when connection is still open
authorMatthew Wild <mwild1@gmail.com>
Tue, 26 May 2009 01:07:52 +0100
changeset 1199 db2a55fe94f2
parent 1198 545c81364939
child 1200 57a72472e1bc
s2smanager: Only send reply </stream:stream> when connection is still open
core/s2smanager.lua
--- a/core/s2smanager.lua	Tue May 26 01:07:21 2009 +0100
+++ b/core/s2smanager.lua	Tue May 26 01:07:52 2009 +0100
@@ -306,7 +306,9 @@
 
 function streamclosed(session)
 	(session.log or log)("debug", "</stream:stream>");
-	session.sends2s("</stream:stream>");
+	if session.sends2s then
+		session.sends2s("</stream:stream>");
+	end
 	session.notopen = true;
 end