view util/xpcall.lua @ 13180:48622b89f570

util.datamanager: Fix missing separator in log line
author Kim Alvefur <zash@zash.se>
date Mon, 10 Jul 2023 17:52:52 +0200
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;
};