From c7310d421353fc7921dcbfca649cee70cacf019c Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Sat, 14 Feb 2026 07:01:47 +1300 Subject: [PATCH] Update storage.py --- custom_components/shopping_list_manager/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/shopping_list_manager/storage.py b/custom_components/shopping_list_manager/storage.py index 75bd4f9..efe2591 100644 --- a/custom_components/shopping_list_manager/storage.py +++ b/custom_components/shopping_list_manager/storage.py @@ -102,7 +102,7 @@ class ShoppingListStorage: # Load product catalog if products are empty if not self._products: _LOGGER.info("Loading product catalog for country: %s", self._country) - catalog_products = load_product_catalog(self._component_path, self._country) # Use self._country + catalog_products = await load_product_catalog(self._component_path, self._country) # Use self._country if catalog_products: _LOGGER.info("Importing %d products from catalog", len(catalog_products))