Mercurial > prosody-hg
view util/xpcall.lua @ 12681:16ea01745dbe
mod_s2s: Simplify conditionals since all sessions should have .host now
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 26 Aug 2022 19:10:15 +0200 |
| 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; };
