From b2da5e62bdf2bdfba50a9152d7e13af8d6918e64 Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Fri, 13 Feb 2026 20:54:33 +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 975499b..d87f176 100644 --- a/custom_components/shopping_list_manager/storage.py +++ b/custom_components/shopping_list_manager/storage.py @@ -115,7 +115,7 @@ class ShoppingListStorage: aliases=prod_data.get("aliases", []), default_unit=prod_data.get("default_unit", "units"), default_quantity=prod_data.get("default_quantity", 1), - price=prod_data.get("typical_price"), + price=prod_data.get("price") or prod_data.get("typical_price"), currency=self.hass.config.currency, barcode=prod_data.get("barcode"), brands=prod_data.get("brands", []),