Skip to content

Commit f1b9f52

Browse files
committed
fix of the sapply source to read data from a pipeline populator
1 parent 4c65061 commit f1b9f52

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

R#/Runtime/Internal/internalInvokes/applys.vb

+2
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,8 @@ Namespace Runtime.Internal.Invokes
393393

394394
If TypeOf x Is tqdmList Then
395395
pull = DirectCast(x, tqdmList).pullData
396+
ElseIf TypeOf x Is pipeline Then
397+
pull = DirectCast(x, pipeline).populates(Of Object)(envir)
396398
Else
397399
pull = REnv.asVector(Of Object)(x).AsObjectEnumerator
398400
End If

0 commit comments

Comments
 (0)