We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e46fe commit b09494aCopy full SHA for b09494a
lib/src/firestore_pagination.dart
@@ -247,7 +247,8 @@ class _FirestorePaginationState extends State<FirestorePagination> {
247
latestDocQuery = latestDocQuery.endBeforeDocument(_docs.first);
248
}
249
250
- _liveStreamSub = latestDocQuery.snapshots().listen(
+ _liveStreamSub =
251
+ latestDocQuery.snapshots(includeMetadataChanges: true).listen(
252
(QuerySnapshot snapshot) async {
253
await tempSub?.cancel();
254
if (snapshot.docs.isEmpty ||
0 commit comments