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 97ea867 commit 6364a1aCopy full SHA for 6364a1a
packages/firestore/src/core/sync_engine_impl.ts
@@ -619,6 +619,9 @@ export async function syncEngineRejectListen(
619
let documentUpdates = new SortedMap<DocumentKey, MutableDocument>(
620
DocumentKey.comparator
621
);
622
+ // TODO(mrschmidt): This limbo document should ideally have a read time,
623
+ // so that it is picked up by any read-time based scans. The backend,
624
+ // however, does not send a read time for target removals.
625
documentUpdates = documentUpdates.insert(
626
limboKey,
627
MutableDocument.newNoDocument(limboKey, SnapshotVersion.min())
0 commit comments