mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
9bcc94bc0c
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,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