mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Use xpcall() for promise function to preserve tracebacks
This commit is contained in:
parent
8328e6681e
commit
a247cea4df
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ local function new(f)
|
|||
local p = setmetatable({ _state = "pending", _next = next_pending, _pending_on_fulfilled = {}, _pending_on_rejected = {} }, promise_mt);
|
||||
if f then
|
||||
local resolve, reject = new_resolve_functions(p);
|
||||
local ok, ret = pcall(f, resolve, reject);
|
||||
local ok, ret = xpcall(f, debug.traceback, resolve, reject);
|
||||
if not ok and p._state == "pending" then
|
||||
reject(ret);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue