nuvoleweb / search_api_spellcheck

Search api suggestions area for Drupal 8 views
2 stars 10 forks source link

Error on suggestion array empty #4

Open ChristopheCaron opened 6 years ago

ChristopheCaron commented 6 years ago

Hello I have one error returned if the suggestion array is empty here:

if ($filter = $this->getFilterMatch($suggestion)) {

I solve the problem like this

if ( count($suggestion) != 0 && $filter = $this->getFilterMatch($suggestion)) {

Thanks for this module !