From 1dcc4c2e783f3f61470fda27fd2357cf33c059bb Mon Sep 17 00:00:00 2001 From: n8detar Date: Mon, 18 Apr 2022 10:36:19 -0700 Subject: [PATCH] Removed No videos message when looking at ignored --- 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 b0d2475..c19da13 100755 --- a/tubearchivist/www/src/pages/download.tsx +++ b/tubearchivist/www/src/pages/download.tsx @@ -208,7 +208,7 @@ const Download: NextPage = () => { } -

Total videos: {downloads?.data?.length} {!downloads?.data?.length &&

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

}

+

Total videos: {downloads?.data?.length} {!downloads?.data?.length && !ignoredStatus &&

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

}

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