Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-sebastian committed Jul 2, 2020
2 parents b2613bd + fc17a3c commit 6c28d0b
Show file tree
Hide file tree
Showing 18 changed files with 312 additions and 389 deletions.
2 changes: 2 additions & 0 deletions .changeset/tough-bananas-attend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
5 changes: 3 additions & 2 deletions packages/firestore/lite/src/api/reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ import {
Bound,
Direction,
Operator,
Query as InternalQuery
Query as InternalQuery,
queryEquals
} from '../../../src/core/query';
import { ResourcePath } from '../../../src/model/path';
import { AutoId } from '../../../src/util/misc';
Expand Down Expand Up @@ -598,7 +599,7 @@ export function queryEqual<T>(
if (left instanceof Query && right instanceof Query) {
return (
left.firestore === right.firestore &&
left._query.isEqual(right._query) &&
queryEquals(left._query, right._query) &&
left._converter === right._converter
);
}
Expand Down
Loading

0 comments on commit 6c28d0b

Please sign in to comment.