Merge 0.9->trunk
authorKim Alvefur <zash@zash.se>
Mon, 08 Apr 2013 22:43:27 +0200
changeset 5455 16493e410fa8
parent 5453 116971a751d3 (current diff)
parent 5454 5f69fddf6fb9 (diff)
child 5457 953888c31071
Merge 0.9->trunk
--- a/plugins/mod_s2s/mod_s2s.lua	Mon Apr 08 17:22:15 2013 +0100
+++ b/plugins/mod_s2s/mod_s2s.lua	Mon Apr 08 22:43:27 2013 +0200
@@ -140,8 +140,8 @@
 		module:log("warn", "The 'disallow_s2s' config option is deprecated, please see http://prosody.im/doc/s2s#disabling");
 		return nil, "This host has disallow_s2s set";
 	end
-	module:hook("route/remote", route_to_existing_session, 200);
-	module:hook("route/remote", route_to_new_session, 100);
+	module:hook("route/remote", route_to_existing_session, -1);
+	module:hook("route/remote", route_to_new_session, -10);
 	module:hook("s2s-authenticated", make_authenticated, -1);
 end