Mercurial > prosody-hg
view util/xpcall.lua @ 14050:64cd905cb1de
util.prosodyctl.check: Do not suggest renaming domain to public suffix
Adds optional dependency on https://github.com/daurnimator/lua-psl
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 22 Jan 2026 17:54:30 +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; };
