- Issue created by @hezounay
- 🇦🇹Austria drunken monkey Vienna, Austria
Thanks for reporting this issue!
However, it seems very specific to your setup, with modules I’m not using, so I’m not available for debugging this. I’d be open to reviewing and merging any MRs, though, if you find a solution that works (and doesn’t negatively impact the module in other ways). We might also need test coverage at that point, but probably pointless to start with that unless we have an idea about a solution.
Are you using Solr? Then I can at least suggest a workaround that should work pretty well. When enabling the “Retrieve highlighted snippets” setting, Solr will already give you highlighted field values for all searched fields, so you could just build the excerpt using those. (This is actually what we did in Drupal 7 – see
SearchApiSolrService::getExcerpt()
. We abandoned this approach for security reasons, but if there is no field-level access restrictions for any of the fulltext fields on your site then this wouldn’t be a concern for you.)
You can get the Solr response (with the highlighting values) via$result_set->getExtraData('search_api_solr_response')
.