view util/xpcall.lua @ 9648:dfebf6cac027 0.11

mod_csi_simple: Don't set <delay> stamps on <iq> stanzas (fixes #1248)
author Kim Alvefur <zash@zash.se>
date Tue, 27 Nov 2018 18:56:22 +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;
};