Skip to content

Commit d43b11d

Browse files
authored
Added fix for ios target, there was a typo in collectionGroupWithID (#144)
1 parent 9bc6763 commit d43b11d

File tree

1 file changed

+1
-1
lines changed
  • firebase-firestore/src/iosMain/kotlin/dev/gitlive/firebase/firestore

1 file changed

+1
-1
lines changed

firebase-firestore/src/iosMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ actual class FirebaseFirestore(val ios: FIRFirestore) {
4242

4343
actual fun collection(collectionPath: String) = CollectionReference(ios.collectionWithPath(collectionPath))
4444

45-
actual fun collectionGroup(collectionId: String) = Query(ios.collectionGroupWithId(collectionId))
45+
actual fun collectionGroup(collectionId: String) = Query(ios.collectionGroupWithID(collectionId))
4646

4747
actual fun document(documentPath: String) = DocumentReference(ios.documentWithPath(documentPath))
4848

0 commit comments

Comments
 (0)