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) )