mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.promise: Remove the non-standard ability to pass a promise to reject()
This commit is contained in:
parent
37bedc7314
commit
8ea77fc0ec
1 changed files with 1 additions and 3 deletions
|
@ -65,9 +65,7 @@ local function new_resolve_functions(p)
|
||||||
local function _reject(e)
|
local function _reject(e)
|
||||||
if resolved then return; end
|
if resolved then return; end
|
||||||
resolved = true;
|
resolved = true;
|
||||||
if is_promise(e) then
|
if promise_settle(p, "rejected", next_rejected, p._pending_on_rejected, e) then
|
||||||
e:next(new_resolve_functions(p));
|
|
||||||
elseif promise_settle(p, "rejected", next_rejected, p._pending_on_rejected, e) then
|
|
||||||
p.reason = e;
|
p.reason = e;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue