aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-12-18 18:34:22 +0100
committerKim Alvefur <zash@zash.se>2013-12-18 18:34:22 +0100
commit31f561fc89c188a67c3c71a7e9615484f5fc70f9 (patch)
tree2b4ed28f2bafdc12b9b8759d60da84ca1a2f9e49 /plugins
parentceba28fe83e3c5692701f22ce1ea4def69271f9e (diff)
downloadprosody-31f561fc89c188a67c3c71a7e9615484f5fc70f9.tar.gz
prosody-31f561fc89c188a67c3c71a7e9615484f5fc70f9.zip
mod_component: Decrease priority of component auth hook
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_component.lua2
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)