view util/xpcall.lua @ 13420:7dc7e2e15b2a

mod_c2s: Fix error on role change on Components (thanks Menel)
author Kim Alvefur <zash@zash.se>
date Sat, 17 Feb 2024 19:07:57 +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;
};