Skip to content

Commit

Permalink
Fix Supply.zip-latest flattening the returned value.
Browse files Browse the repository at this point in the history
  • Loading branch information
niner committed Aug 30, 2015
1 parent c6a428c commit 36ea477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Supply.pm
Expand Up @@ -799,7 +799,7 @@ my role Supply {
--$uninitialised
if $uninitialised > 0 && not @values.EXISTS-POS($index);
@values[$index] = $val;
$res.emit( $[@values] ) unless $uninitialised;
$res.emit( @values.List.item ) unless $uninitialised;
},
done => { $res.done() if ++$dones == +@s }
}
Expand Down

0 comments on commit 36ea477

Please sign in to comment.