diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-18 12:11:50 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-18 12:11:50 +0100 |
commit | 767997a53a686ace0b60ac6568c6d5483a276f12 (patch) | |
tree | 04f24e8f527e1eaa6090455ea8f7bb43ab9de5d4 /util/promise.lua | |
parent | 52810113d8176f26bf8d8fe0049dc331302f56dc (diff) | |
download | prosody-767997a53a686ace0b60ac6568c6d5483a276f12.tar.gz prosody-767997a53a686ace0b60ac6568c6d5483a276f12.zip |
util.promise: Also support automatic resolution by returning a promise from an on_reject handler
Originally unimplemented because it wasn't clear to me what the correct behaviour was, but the A+
spec is clear that both onFulfilled and onRejected may return a promise.
Diffstat (limited to 'util/promise.lua')
-rw-r--r-- | util/promise.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/promise.lua b/util/promise.lua index 1f48eb9f..2583baa2 100644 --- a/util/promise.lua +++ b/util/promise.lua @@ -46,7 +46,9 @@ local function new_resolve_functions(p) local function _reject(e) if resolved then return; end resolved = true; - if promise_settle(p, "rejected", next_rejected, p._pending_on_rejected, e) then + if is_promise(e) then + e:next(new_resolve_functions(p)); + elseif promise_settle(p, "rejected", next_rejected, p._pending_on_rejected, e) then p.reason = e; end end |