diff options
author | Kim Alvefur <zash@zash.se> | 2013-12-18 18:34:22 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-12-18 18:34:22 +0100 |
commit | 72d77534417279b36f2bfff101cb274ad3ba5864 (patch) | |
tree | 2b4ed28f2bafdc12b9b8759d60da84ca1a2f9e49 /plugins | |
parent | e204ed5dce8050537ca6d8af0c69a8b62ea8aa2e (diff) | |
download | prosody-72d77534417279b36f2bfff101cb274ad3ba5864.tar.gz prosody-72d77534417279b36f2bfff101cb274ad3ba5864.zip |
mod_component: Decrease priority of component auth hook
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_component.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index a5767c9a..b6e111d5 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -86,7 +86,7 @@ function module.add_host(module) return true; end - module:hook("stanza/jabber:component:accept:handshake", handle_component_auth); + module:hook("stanza/jabber:component:accept:handshake", handle_component_auth, -1); -- Handle stanzas addressed to this component local function handle_stanza(event) |