1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Don't show already imported movies as downloading in Movies index

This commit is contained in:
Bogdan
2023-11-07 20:25:17 +02:00
parent c2e206b7ac
commit 50f48277e5
3 changed files with 48 additions and 32 deletions
@@ -11,7 +11,10 @@ function createMovieQueueDetailsSelector(movieId: number) {
(queueItems) => {
return queueItems.reduce(
(acc: MovieQueueDetails, item) => {
if (item.movieId !== movieId) {
if (
item.trackedDownloadState === 'imported' ||
item.movieId !== movieId
) {
return acc;
}