diff --git a/src/util/Collection.js b/src/util/Collection.js index e1e682be9..3f706728d 100644 --- a/src/util/Collection.js +++ b/src/util/Collection.js @@ -114,7 +114,7 @@ class Collection extends Map { * } */ exists(key, value) { - return Boolean(this.get(key, value)); + return Boolean(this.find(key, value)); } _arrayMethod(method, args) {