Software /
code /
prosody
File
util/xpcall.lua @ 13526:3abed2ec7ab6
Add Info about mod_announce in the CHANGES file of trunk
author | Menel <menel@mailbox.de> |
---|---|
date | Mon, 21 Oct 2024 17:15:06 +0200 |
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; };