view util/xpcall.lua @ 13608:df32fff0963d

mod_pubsub: Remove unused loop variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Wed, 08 Jan 2025 08:54:52 +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;
};