Skip to content

Commit 6c28d0b

Browse files
Merge
2 parents b2613bd + fc17a3c commit 6c28d0b

18 files changed

+312
-389
lines changed

.changeset/tough-bananas-attend.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/firestore/lite/src/api/reference.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ import {
2929
Bound,
3030
Direction,
3131
Operator,
32-
Query as InternalQuery
32+
Query as InternalQuery,
33+
queryEquals
3334
} from '../../../src/core/query';
3435
import { ResourcePath } from '../../../src/model/path';
3536
import { AutoId } from '../../../src/util/misc';
@@ -598,7 +599,7 @@ export function queryEqual<T>(
598599
if (left instanceof Query && right instanceof Query) {
599600
return (
600601
left.firestore === right.firestore &&
601-
left._query.isEqual(right._query) &&
602+
queryEquals(left._query, right._query) &&
602603
left._converter === right._converter
603604
);
604605
}

0 commit comments

Comments
 (0)