Skip to content

Commit 9dadbb0

Browse files
committedJan 1, 2014
Fix Promise.when yielding value when a promise acts
1 parent a773819 commit 9dadbb0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎stdlib/promise.rb

+4
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,10 @@ def wait(promise)
258258
promise = Promise.value(promise)
259259
end
260260

261+
if promise.act?
262+
promise = promise.then
263+
end
264+
261265
@wait << promise
262266

263267
promise.always {

0 commit comments

Comments
 (0)