From 9680e47c52f8d6ea2524c16ad165cd37850be7ee Mon Sep 17 00:00:00 2001 From: Bruno Vescovi Date: Fri, 22 Nov 2024 11:48:27 +0100 Subject: [PATCH] Filter stores with hashid --- Helper/StoreConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Helper/StoreConfig.php b/Helper/StoreConfig.php index 2b794526..a58991d6 100755 --- a/Helper/StoreConfig.php +++ b/Helper/StoreConfig.php @@ -445,7 +445,7 @@ public function getAllStores(?bool $onlyActive = true): array return array_filter( $stores, function ($store) { - return $store->isActive(); + return $store->isActive() && getHashId($store) != null; } ); }