From 9c959baadd4e73bb644c6b7dd2b06e45becdc03e Mon Sep 17 00:00:00 2001 From: thierryverse Date: Tue, 11 Nov 2025 19:17:41 +0200 Subject: [PATCH] clean up comments --- surfsense_backend/app/tasks/podcast_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surfsense_backend/app/tasks/podcast_tasks.py b/surfsense_backend/app/tasks/podcast_tasks.py index 51e750f4d..f70405ccc 100644 --- a/surfsense_backend/app/tasks/podcast_tasks.py +++ b/surfsense_backend/app/tasks/podcast_tasks.py @@ -139,7 +139,7 @@ async def generate_chat_podcast( }, ) - # check if podcast already exists for this chat with the same title (re-generation) + # check if podcast already exists for this chat (re-generation) existing_podcast = await session.execute( select(Podcast).filter(Podcast.chat_id == chat_id) )