Skip to content

Commit e7589ca

Browse files
Merge
1 parent d1bd94a commit e7589ca

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

packages/firestore/CHANGELOG.md

-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
# Unreleased
2-
<<<<<<< HEAD
3-
- [fixed] Fixed an issue where documents could be cached as deleted when
4-
they should not have been, leading to queries returning fewer results than
5-
they should (firebase/firebase-ios-sdk#1548).
6-
=======
72
- [fixed] Fixed an issue where queries returned fewer results than they should,
83
caused by documents that were cached as deleted when they should not have
94
been (firebase/firebase-ios-sdk#1548). Because some cache data is cleared,
105
clients might use extra bandwidth the first time they launch with this
116
version of the SDK.
12-
>>>>>>> master
137
- [feature] Added `firebase.firestore.FieldValue.arrayUnion()` and
148
`firebase.firestore.FieldValue.arrayRemove()` to atomically add and remove
159
elements from an array field in a document.

packages/firestore/src/core/sync_engine.ts

-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,6 @@ export class SyncEngine implements RemoteSyncer, SharedClientStateSyncer {
523523

524524
const limboResolution = this.limboResolutionsByTarget[targetId];
525525
const limboKey = limboResolution && limboResolution.key;
526-
527526
if (limboKey) {
528527
// Since this query failed, we won't want to manually unlisten to it.
529528
// So go ahead and remove it from bookkeeping.

0 commit comments

Comments
 (0)