mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Fix name of config option in error message (thanks nulani!)
This commit is contained in:
parent
040ff64c5f
commit
237f683563
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");
|
||||
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");
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue