- πΊπΈUnited States sean_e_dietrich Sacramento, CA
I was able to test this and confirmed that I'm no longer seeing the issues any longer
Thanks for the module, I have a requirement and I think the denormalization is my solution.
I was testing the module and I found an error when indexing, it's caused by some validations that are missing, the error is the following:
An AJAX HTTP error occurred.
HTTP Result Code: 200
Debugging information follows.
Path: /en/batch?id=5183&op=do_nojs&op=do
StatusText: OK
ResponseText: Error: Call to a member function getValues() on null in Drupal\search_api_grouping\Plugin\search_api\processor\Denormalize->alterIndexedItems() (line 126 of /app/docroot/modules/contrib/search_api_grouping/src/Plugin/search_api/processor/Denormalize.php).
Add some validations around that line:
$field = $item->getField($field_name);
if (empty($field)) {
continue;
}
$values = $field->getValues();
Test patch
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I was able to test this and confirmed that I'm no longer seeing the issues any longer