mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Use module:get_option() instead of configmanager.
This commit is contained in:
parent
6bc1c5d24a
commit
3501f4f0c9
1 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ local hosts = _G.hosts;
|
|||
|
||||
local t_concat = table.concat;
|
||||
|
||||
local config = require "core.configmanager";
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
local st = require "util.stanza";
|
||||
|
||||
|
@ -68,7 +67,7 @@ function handle_component_auth(event)
|
|||
return true;
|
||||
end
|
||||
|
||||
local secret = config.get(session.host, "core", "component_secret");
|
||||
local secret = module:get_option("component_secret");
|
||||
if not secret then
|
||||
(session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.host);
|
||||
session:close("not-authorized");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue