mod_legacyauth: Report failure from sessionmanager (mostly invalid username)

This commit is contained in:
Kim Alvefur 2019-12-23 23:11:28 +01:00
parent 77daebcbc2
commit 4b548a129b

View file

@ -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