From 508195c204e76f468c810b90b40a58b0c8670818 Mon Sep 17 00:00:00 2001 From: sandip Date: Thu, 5 Mar 2026 18:55:39 +0530 Subject: [PATCH] type casting fix --- Model/Feed/Specification/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Feed/Specification/Feed.php b/Model/Feed/Specification/Feed.php index e695fa0..08c6c35 100644 --- a/Model/Feed/Specification/Feed.php +++ b/Model/Feed/Specification/Feed.php @@ -335,7 +335,7 @@ public function setPreSignedUrl(string $url): FeedSpecificationInterface */ public function getMsiStatus(): bool { - return $this->_get(self::MSI_STATUS); + return (bool)$this->_get(self::MSI_STATUS); } /**