Skip to content

Commit

Permalink
#40 - Add support for multivalued fields defined via custom search ap…
Browse files Browse the repository at this point in the history
…i processor
  • Loading branch information
carolpettirossi committed Mar 16, 2021
1 parent dfb32d1 commit 35ba7d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Utility/SearchAPIHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public static function checkMultivalue($field) {
$multivalue = TRUE;
}
}
elseif ($field->getDataDefinition()->isList()) {
$multivalue = TRUE;
}

return $multivalue;
}
Expand Down

0 comments on commit 35ba7d8

Please sign in to comment.