Skip to content

Commit

Permalink
Added fix for ios target, there was a typo in collectionGroupWithID (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk authored Feb 3, 2021
1 parent 9bc6763 commit d43b11d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ actual class FirebaseFirestore(val ios: FIRFirestore) {

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

actual fun collectionGroup(collectionId: String) = Query(ios.collectionGroupWithId(collectionId))
actual fun collectionGroup(collectionId: String) = Query(ios.collectionGroupWithID(collectionId))

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

Expand Down

0 comments on commit d43b11d

Please sign in to comment.