Mercurial > prosody-hg
view util/xpcall.lua @ 13222:cb6a17eaa0e6
mod_storage_sql: Use config enum for 'sqlite_tune'
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 18 Jul 2023 11:53:12 +0200 |
| 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; };
