mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_legacyauth: Undo auth on bind fail. Legacy auth is atomic.
This commit is contained in:
parent
fba5b67403
commit
aa65ea57bd
1 changed files with 1 additions and 0 deletions
|
@ -60,6 +60,7 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
|
||||||
success, err_type, err, err_msg = sessionmanager.bind_resource(session, resource);
|
success, err_type, err, err_msg = sessionmanager.bind_resource(session, resource);
|
||||||
if not success then
|
if not success then
|
||||||
session.send(st.error_reply(stanza, err_type, err, err_msg));
|
session.send(st.error_reply(stanza, err_type, err, err_msg));
|
||||||
|
session.username, session.type = nil, "c2s_unauthed"; -- FIXME should this be placed in sessionmanager?
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue