- πΊπΈUnited States Brandon Mok
In the patch from #16, I noticed the check that determines if a child needs to be updated was always evaluating to TRUE for this particular condition
$child_entity->id() !== $entity->id
. The accessing of the entity's id through$entity->id
was observed to return a NULL value every time despite there being a parent entity; thereby, resulting in a truthy check.Based on the #16 patch, the included patch and interdiff updates the condition so that the accessing of the entity's id is through the
id()
method of the EntityInterface:$entity->id()
. - πͺπΈSpain penyaskito Seville π, Spain πͺπΈ, UTC+2 πͺπΊ
I don't know why #20 ignored the patch at #19 (thought they might be crossposting, but they have more than 1 year between them), but with #20 I also get duplicated path aliases all over the place.