2
0
mirror of synced 2025-01-12 15:14:39 +00:00

Merge pull request #499 from DavidKuennen/patch-1

[firestore] Fix _metadata not defined error in DocumentSnapshot
This commit is contained in:
Michael Diarmid 2017-10-12 17:29:52 +01:00 committed by GitHub
commit 6d1e9e2f62

View File

@ -40,7 +40,7 @@ export default class DocumentSnapshot {
} }
get metadata(): SnapshotMetadata { get metadata(): SnapshotMetadata {
return _metadata; return this._metadata;
} }
get ref(): DocumentReference { get ref(): DocumentReference {