From 64f47c15898fb35dc4b3f442e4ced206a2610f37 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:18:52 -0600 Subject: [PATCH] fix: Reprocess script UUID handling for postgres (#6705) --- mealie/scripts/reprocess_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mealie/scripts/reprocess_images.py b/mealie/scripts/reprocess_images.py index f9b516242..b107c1213 100644 --- a/mealie/scripts/reprocess_images.py +++ b/mealie/scripts/reprocess_images.py @@ -62,7 +62,7 @@ def fetch_recipe_ids(force_all: bool = False) -> set[UUID4]: with session_context() as session: result = session.execute(sa.text(f"SELECT id FROM {RecipeModel.__tablename__}")) - recipe_ids = {UUID4(row[0]) for row in result} + recipe_ids = {UUID4(str(row[0])) for row in result} if force_all: logger.info("!!Force processing all recipes regardless of current image state") return recipe_ids