File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
firebase-firestore/src/iosMain/kotlin/dev/gitlive/firebase/firestore Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -284,14 +284,14 @@ actual open class Query(open val ios: FIRQuery) {
284
284
internal actual fun _orderBy (field : FieldPath , direction : Direction ) = Query (ios.queryOrderedByFieldPath(field.ios, direction == Direction .DESCENDING ))
285
285
286
286
internal actual fun _startAfter (document : DocumentSnapshot ) = Query (ios.queryStartingAfterDocument(document.ios))
287
- internal actual fun _startAfter (vararg fieldValues : Any ) = Query (ios.queryStartingAfterValues(fieldValues))
287
+ internal actual fun _startAfter (vararg fieldValues : Any ) = Query (ios.queryStartingAfterValues(fieldValues.asList() ))
288
288
internal actual fun _startAt (document : DocumentSnapshot ) = Query (ios.queryStartingAtDocument(document.ios))
289
- internal actual fun _startAt (vararg fieldValues : Any ) = Query (ios.queryStartingAtValues(fieldValues))
289
+ internal actual fun _startAt (vararg fieldValues : Any ) = Query (ios.queryStartingAtValues(fieldValues.asList() ))
290
290
291
291
internal actual fun _endBefore (document : DocumentSnapshot ) = Query (ios.queryEndingBeforeDocument(document.ios))
292
- internal actual fun _endBefore (vararg fieldValues : Any ) = Query (ios.queryEndingBeforeValues(fieldValues))
292
+ internal actual fun _endBefore (vararg fieldValues : Any ) = Query (ios.queryEndingBeforeValues(fieldValues.asList() ))
293
293
internal actual fun _endAt (document : DocumentSnapshot ) = Query (ios.queryEndingAtDocument(document.ios))
294
- internal actual fun _endAt (vararg fieldValues : Any ) = Query (ios.queryEndingAtValues(fieldValues))
294
+ internal actual fun _endAt (vararg fieldValues : Any ) = Query (ios.queryEndingAtValues(fieldValues.asList() ))
295
295
296
296
}
297
297
@Suppress(" UNCHECKED_CAST" )
You can’t perform that action at this time.
0 commit comments