Software /
code /
prosody
File
util/xpcall.lua @ 13151:7ebb3d6afcd1
mod_storage_sql: Add some TODO comments for future UPSERT work
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 11 Jun 2023 20:25:50 +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; };