mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Fixed: Some nil access bugs
This commit is contained in:
parent
1de71a88b9
commit
2365831f7d
2 changed files with 3 additions and 3 deletions
|
@ -74,7 +74,7 @@ local function sasl_handler(session, stanza)
|
|||
-- FIXME ignoring duplicates because ejabberd does
|
||||
if config.get(session.host or "*", "core", "anonymous_login") and stanza.attr.mechanism ~= "ANONYMOUS" then
|
||||
return session.send(build_reply("failure", "invalid-mechanism"));
|
||||
elseif mechanism == "ANONYMOUS" then
|
||||
elseif stanza.attr.mechanism == "ANONYMOUS" then
|
||||
return session.send(build_reply("failure", "mechanism-too-weak"));
|
||||
end
|
||||
session.sasl_handler = new_sasl(stanza.attr.mechanism, session.host, password_callback);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue