From 7133448ae964cc05d095b6c301e462e930a77251 Mon Sep 17 00:00:00 2001 From: mariodz95 Date: Tue, 22 Jul 2025 08:18:42 +0200 Subject: [PATCH] fix: use update function to update recipe asset --- mealie/routes/recipe/recipe_crud_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mealie/routes/recipe/recipe_crud_routes.py b/mealie/routes/recipe/recipe_crud_routes.py index 00e273a2a..6eeedf36c 100644 --- a/mealie/routes/recipe/recipe_crud_routes.py +++ b/mealie/routes/recipe/recipe_crud_routes.py @@ -571,6 +571,6 @@ class RecipeController(BaseRecipeController): recipe.assets.append(asset_in) - group_recipes.update_image(slug) + group_recipes.update(slug, recipe) return asset_in