diff options
author | Kim Alvefur <zash@zash.se> | 2013-04-08 22:42:38 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-04-08 22:42:38 +0200 |
commit | aa3cbd503967a0516f104b0f3bccb1f2a5e8fde2 (patch) | |
tree | c5af87b7a908791401460539778ee94ab2bfe35e | |
parent | 7e9a5cc5a36ae7d653836615143b5a78a505bfed (diff) | |
download | prosody-aa3cbd503967a0516f104b0f3bccb1f2a5e8fde2.tar.gz prosody-aa3cbd503967a0516f104b0f3bccb1f2a5e8fde2.zip |
mod_s2s: Adjust priority of route/remote hooks to negative values (like most other internal hooks)
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 4 |
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 |