We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15dd14 commit 522dfa9Copy full SHA for 522dfa9
src/Query/Query.php
@@ -423,7 +423,11 @@ private static function filterDataWithMatchedIndex(
423
foreach ($matched_index->fields as $matched_field) {
424
if ($keys === vec[]) {
425
foreach ($candidates[$matched_field] as $candidate_value) {
426
- $keys[] = vec[$candidate_value as arraykey];
+ if (!$candidate_value is arraykey) {
427
+ continue;
428
+ }
429
+
430
+ $keys[] = vec[$candidate_value];
431
}
432
} else {
433
$new_keys = vec[];
0 commit comments