Skip to content

Commit 33d656e

Browse files
author
Brian Chen
authored
Update FieldFilter error message to match ios (#682)
1 parent 5dc3bce commit 33d656e

File tree

1 file changed

+1
-1
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/core

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/core/FieldFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static FieldFilter create(FieldPath path, Operator operator, FieldValue v
6868
if (operator == Operator.IN) {
6969
hardAssert(
7070
value instanceof ArrayValue,
71-
"Comparing on key with IN, but an array value was not a RefValue");
71+
"Comparing on key with IN, but the value was not an ArrayValue");
7272
return new KeyFieldInFilter(path, (ArrayValue) value);
7373
} else {
7474
hardAssert(

0 commit comments

Comments
 (0)