From b92970992fa51d2fd8f0968ebc716a4e1a5dfefc Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sat, 8 Jun 2024 11:50:46 +0300 Subject: [PATCH] ref --- application/Espo/ORM/BaseEntity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/ORM/BaseEntity.php b/application/Espo/ORM/BaseEntity.php index 6e218b20d5..357c698470 100644 --- a/application/Espo/ORM/BaseEntity.php +++ b/application/Espo/ORM/BaseEntity.php @@ -337,7 +337,7 @@ class BaseEntity implements Entity $value = $this->fetchedValuesContainer[$attribute] ?? null; if ($value === null) { - return $value; + return null; } $type = $this->getAttributeType($attribute);