[firestore] Fix incorrect references

This commit is contained in:
Chris Bianca 2017-11-28 09:21:41 +00:00
parent 1f5231cfba
commit 5aa8435aff
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ export default class Firestore extends FirestoreInternalModule {
* @returns {CollectionReference}
*/
collection(collectionPath: string): CollectionReference {
const path = super._referencePath.child(collectionPath);
const path = this._referencePath.child(collectionPath);
if (!path.isCollection) {
throw new Error('Argument "collectionPath" must point to a collection.');
}
@ -115,7 +115,7 @@ export default class Firestore extends FirestoreInternalModule {
* @returns {DocumentReference}
*/
doc(documentPath: string): DocumentReference {
const path = super._referencePath.child(documentPath);
const path = this._referencePath.child(documentPath);
if (!path.isDocument) {
throw new Error('Argument "documentPath" must point to a document.');
}