Mercurial > prosody-hg
view util/xpcall.lua @ 14120:0e9e3efa381f 13.0
mod_admin_shell: Fail user creation/modification if new password fails saslprep
This saves us from setting an invalid password and preventing the new account
from authenticating.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 02 Apr 2026 20:53:04 +0100 |
| parents | d10957394a3c |
| children |
line wrap: on
line source
local xpcall = xpcall; if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then xpcall = require"prosody.util.compat".xpcall; end return { xpcall = xpcall; };
