From 87bb9b3acf785cabfebd35d9ebadf4fe4c708d3f Mon Sep 17 00:00:00 2001 From: "Abdulmhsen B. A. A" Date: Sat, 14 May 2022 23:16:05 +0300 Subject: [PATCH] Added suids field to the list of always change if differ list. --- src/Libs/Entity/StateEntity.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Libs/Entity/StateEntity.php b/src/Libs/Entity/StateEntity.php index 1a9ba8bd..78b32fc0 100644 --- a/src/Libs/Entity/StateEntity.php +++ b/src/Libs/Entity/StateEntity.php @@ -228,6 +228,10 @@ final class StateEntity implements StateInterface $this->updateValue('parent', $entity); } + if ($this->suids !== $entity->suids) { + $this->updateValue('suids', $entity); + } + return $this; }