Mercurial > prosody-hg
view util/xpcall.lua @ 13387:e5ddae99faa8
mod_user_account_management: Clear pending deletion if account re-enabled
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 07 Dec 2023 12:08:01 +0000 |
| 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; };
