From 3d1cee8fd1d8c97e72d0f5365ca0371e5676283e Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Thu, 20 Nov 2025 23:27:02 -0500 Subject: feat: implement t-1f9RIzd --- Biz/PodcastItLater/Core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Biz/PodcastItLater/Core.py') diff --git a/Biz/PodcastItLater/Core.py b/Biz/PodcastItLater/Core.py index 8d31956..738531f 100644 --- a/Biz/PodcastItLater/Core.py +++ b/Biz/PodcastItLater/Core.py @@ -373,7 +373,7 @@ class Database: # noqa: PLR0904 SELECT id, url, email, status, created_at, error_message, title, author FROM queue - WHERE status IN ('pending', 'processing', 'error') + WHERE status IN ('pending', 'processing', 'extracting', 'synthesizing', 'uploading', 'error') ORDER BY created_at DESC LIMIT 20 """) @@ -888,7 +888,7 @@ class Database: # noqa: PLR0904 title, author FROM queue WHERE user_id = ? AND - status IN ('pending', 'processing', 'error') + status IN ('pending', 'processing', 'extracting', 'synthesizing', 'uploading', 'error') ORDER BY created_at DESC LIMIT 20 """, -- cgit v1.2.3