From 94f771d0e3ed7d875b2ecc666abccec07de1ae98 Mon Sep 17 00:00:00 2001 From: thekiwismarthome <134335563+thekiwismarthome@users.noreply.github.com> Date: Sat, 14 Feb 2026 06:51:55 +1300 Subject: [PATCH] Update storage.py --- custom_components/shopping_list_manager/storage.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/custom_components/shopping_list_manager/storage.py b/custom_components/shopping_list_manager/storage.py index d3b5e56..75bd4f9 100644 --- a/custom_components/shopping_list_manager/storage.py +++ b/custom_components/shopping_list_manager/storage.py @@ -123,7 +123,14 @@ class ShoppingListStorage: brands=prod_data.get("brands", []), image_url=prod_data.get("image_url", ""), custom=False, - source="catalog" + source="catalog", + tags=prod_data.get("tags", []), + collections=prod_data.get("collections", []), + taxonomy=prod_data.get("taxonomy", {}), + allergens=prod_data.get("allergens", []), + substitution_group=prod_data.get("substitution_group", ""), + priority_level=prod_data.get("priority_level", 0), + image_hint=prod_data.get("image_hint", "") ) self._products[product.id] = product except Exception as err: