view util/xpcall.lua @ 14083:486d42764da9

mod_invites: Allow specifying --reusable for invites created via shell commands
author Matthew Wild <mwild1@gmail.com>
date Mon, 16 Feb 2026 17:56:02 +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;
};