File

util/xpcall.lua @ 13334:aefcb6b4f47d

mod_admin_shell: Add debug:async() command to show blocked async runners
author Matthew Wild <mwild1@gmail.com>
date Tue, 21 Nov 2023 18:48:58 +0000
parent 12975: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"prosody.util.compat".xpcall;
end

return {
	xpcall = xpcall;
};