Mercurial > prosody-hg
view util/xpcall.lua @ 12042:fe643b3a41f2
mod_smacks: Back out def20683c161
The attempted fix completely broke everything after resumption.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Mon, 13 Dec 2021 21:15:06 +0100 |
| parents | cfc7b2f7251e |
| children | 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"util.compat".xpcall; end return { xpcall = xpcall; };
