Automatically closed - issue fixed for 2 weeks with no activity.
Field value in filterBundles method will always be empty because it checks the bundle against the array keys of $field_config['selected_bundles']
and therefore the whole functionality of the module will be broken.
I'm using Drupal 9.4.8, Search api 1.27.0, and facets 2.0.5.
Following the instructions provided in the readme file with the above versions will reproduce the issue.
use in_array()
instead of array_key_exists
.
I added a patch that does the following:
array_key_exists
with in_array()
.$convert_labels
.$field_config['field_status']
when $field_config
is empty.Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.