- First commit to issue fork.
- @theodorosploumis opened merge request.
- 🇬🇷Greece TheodorosPloumis Greece
We have the some problem on a migration from a 7.x multilingual Drupal (using module entity_translation → ) where the sorting of the revisions cause new Nodes on the 10.x Drupal to have a wrong "Original language" (source).
The sorting was like this (for an "en/de/nl/fr" language setup):
vid=1, language=de vid=1, language=en vid=1, language=fr vid=1, language=nl
The solution was to add an extra sortBy the "created" column because the source translation revision is always created first. After the patch the sorting was:
vid=1, language=en vid=1, language=de vid=1, language=fr vid=1, language=nl
Even with this patch we need to add specific Tests.