Software /
code /
prosody
File
util/xpcall.lua @ 13530:87cced02c32b
util.dnsregistry: Refresh from IANA
For freshness. Not that it matters a lot for Prosody
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 26 Oct 2024 14:44: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; };