mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_component: Fix name of config option in error message (thanks nulani!)
This commit is contained in:
parent
f80585f354
commit
139241f580
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ function handle_component_auth(session, stanza)
|
||||||
|
|
||||||
local secret = config.get(session.user, "core", "component_secret");
|
local secret = config.get(session.user, "core", "component_secret");
|
||||||
if not secret then
|
if not secret then
|
||||||
(session.log or log)("warn", "Component attempted to identify as %s, but component_password is not set", session.user);
|
(session.log or log)("warn", "Component attempted to identify as %s, but component_secret is not set", session.user);
|
||||||
session:close("not-authorized");
|
session:close("not-authorized");
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue