aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/API/FIRQuerySnapshot.mm
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/Source/API/FIRQuerySnapshot.mm')
-rw-r--r--Firestore/Source/API/FIRQuerySnapshot.mm15
1 files changed, 12 insertions, 3 deletions
diff --git a/Firestore/Source/API/FIRQuerySnapshot.mm b/Firestore/Source/API/FIRQuerySnapshot.mm
index abee84c..fb7a849 100644
--- a/Firestore/Source/API/FIRQuerySnapshot.mm
+++ b/Firestore/Source/API/FIRQuerySnapshot.mm
@@ -62,6 +62,7 @@ NS_ASSUME_NONNULL_BEGIN
// Cached value of the documentChanges property.
NSArray<FIRDocumentChange *> *_documentChanges;
+ BOOL _documentChangesIncludeMetadataChanges;
}
- (instancetype)initWithFirestore:(FIRFirestore *)firestore
@@ -73,6 +74,7 @@ NS_ASSUME_NONNULL_BEGIN
_originalQuery = query;
_snapshot = snapshot;
_metadata = metadata;
+ _documentChangesIncludeMetadataChanges = NO;
}
return self;
}
@@ -139,9 +141,16 @@ NS_ASSUME_NONNULL_BEGIN
}
- (NSArray<FIRDocumentChange *> *)documentChanges {
- if (!_documentChanges) {
- _documentChanges =
- [FIRDocumentChange documentChangesForSnapshot:self.snapshot firestore:self.firestore];
+ return [self documentChangesWithIncludeMetadataChanges:NO];
+}
+
+- (NSArray<FIRDocumentChange *> *)documentChangesWithIncludeMetadataChanges:
+ (BOOL)includeMetadataChanges {
+ if (!_documentChanges || _documentChangesIncludeMetadataChanges != includeMetadataChanges) {
+ _documentChanges = [FIRDocumentChange documentChangesForSnapshot:self.snapshot
+ includeMetadataChanges:includeMetadataChanges
+ firestore:self.firestore];
+ _documentChangesIncludeMetadataChanges = includeMetadataChanges;
}
return _documentChanges;
}