diff --git a/Helper/StoreConfig.php b/Helper/StoreConfig.php index 2b79452..a58991d 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; } ); }