From 4082fe1e1cedde481e28a2b4b6dc7779c89f0e69 Mon Sep 17 00:00:00 2001 From: n8detar Date: Fri, 22 Apr 2022 09:02:23 -0700 Subject: [PATCH] Fix for the fix for the no videos queued message. --- tubearchivist/www/src/pages/download.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/www/src/pages/download.tsx b/tubearchivist/www/src/pages/download.tsx index 9b7568c..3682de5 100755 --- a/tubearchivist/www/src/pages/download.tsx +++ b/tubearchivist/www/src/pages/download.tsx @@ -292,7 +292,7 @@ const Download: NextPage = () => { } -

Total videos: {downloads?.paginate?.total_hits} {!downloads && !downloads.message && !ignoredStatus &&

No videos queued for download. Press rescan subscriptions to check if there are any new videos.

}

+

Total videos: {downloads?.paginate?.total_hits} {!downloads && !downloads?.message && !ignoredStatus &&

No videos queued for download. Press rescan subscriptions to check if there are any new videos.

}

{!isLoading && !error && !downloads?.message && downloads?.data?.map((video) => {