codappix / search_core

TYPO3 CMS 8.x Extension with basic Integration of Elasticsearch
https://search-core.readthedocs.io/en/latest/
12 stars 9 forks source link

BUGFIX: Allow indexing of new records with their relations #115

Closed DanielSiepmann closed 6 years ago

DanielSiepmann commented 6 years ago

Relations were inserted by TYPO3's DataHandler after indexing and were therefore not indexed.

We now use a later hook after DataHandler has finished everything, so we know that we can index. As it's not relevant, we do not differentiate between add and update anymore, as both trigger "indexDocument" internal.

Resolves: #112