diff --git a/surfsense_backend/app/tasks/podcast_tasks.py b/surfsense_backend/app/tasks/podcast_tasks.py index de65ca5e2..51e750f4d 100644 --- a/surfsense_backend/app/tasks/podcast_tasks.py +++ b/surfsense_backend/app/tasks/podcast_tasks.py @@ -141,9 +141,7 @@ async def generate_chat_podcast( # check if podcast already exists for this chat with the same title (re-generation) existing_podcast = await session.execute( - select(Podcast).filter( - Podcast.chat_id == chat_id, Podcast.title == podcast_title - ) + select(Podcast).filter(Podcast.chat_id == chat_id) ) existing_podcast = existing_podcast.scalars().first() diff --git a/surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx b/surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx index 0e3485464..dc18afd0d 100644 --- a/surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx +++ b/surfsense_web/components/chat/ChatPanel/ChatPanelView.tsx @@ -113,25 +113,27 @@ export function ChatPanelView(props: ChatPanelViewProps) { )} -