aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-04-08 22:42:38 +0200
committerKim Alvefur <zash@zash.se>2013-04-08 22:42:38 +0200
commitdc7aae81cdfd226b8f40b69c1f5c4d8d5b80988d (patch)
treec5af87b7a908791401460539778ee94ab2bfe35e /plugins
parent0ce5c766ac0a68a167a9fa26b931c56d35ae785b (diff)
downloadprosody-dc7aae81cdfd226b8f40b69c1f5c4d8d5b80988d.tar.gz
prosody-dc7aae81cdfd226b8f40b69c1f5c4d8d5b80988d.zip
mod_s2s: Adjust priority of route/remote hooks to negative values (like most other internal hooks)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index 1547345d..eb10cd35 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -140,8 +140,8 @@ function module.add_host(module)
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