Mercurial > prosody-hg
view util/xpcall.lua @ 12437:9f5d0b77e3df 0.12
mod_turn_external: Update status and friendlier handling of missing secret option (fixes #1727)
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 28 Mar 2022 10:47:21 +0100 |
| parents | cfc7b2f7251e |
| children | d10957394a3c |
line wrap: on
line source
local xpcall = xpcall; if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then xpcall = require"util.compat".xpcall; end return { xpcall = xpcall; };
