Changeset

1173:09a4cd461673

modulemanager: Don't close the stream on unhandled stream:features
author Waqas Hussain <waqas20@gmail.com>
date Sat, 16 May 2009 05:07:51 +0500
parents 1172:490ff24d0ac5
children 1174:f7b6d5839092
files core/modulemanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/modulemanager.lua	Sat May 16 03:58:05 2009 +0500
+++ b/core/modulemanager.lua	Sat May 16 05:07:51 2009 +0500
@@ -231,7 +231,7 @@
 			if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
 				origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
 			end
-		else
+		elseif not(name == "features" and xmlns == "http://etherx.jabber.org/streams") then -- FIXME remove check once we handle S2S features
 			origin:close("unsupported-stanza-type");
 		end
 	end