mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_legacyauth: Report failure from sessionmanager (mostly invalid username)
This commit is contained in:
parent
77daebcbc2
commit
4b548a129b
1 changed files with 3 additions and 1 deletions
|
@ -78,8 +78,10 @@ module:hook("stanza/iq/jabber:iq:auth:query", function(event)
|
|||
session:close(); -- FIXME undo resource bind and auth instead of closing the session?
|
||||
return true;
|
||||
end
|
||||
session.send(st.reply(stanza));
|
||||
else
|
||||
session.send(st.error_reply(stanza, "auth", "not-authorized", err));
|
||||
end
|
||||
session.send(st.reply(stanza));
|
||||
else
|
||||
session.send(st.error_reply(stanza, "auth", "not-authorized"));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue