Mercurial > prosody-hg
view util/xpcall.lua @ 13740:4cf2caa63277 13.0
mod_invites: Fix traceback when no flags passed
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 17 Feb 2025 22:57:58 +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; };
