1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fixed: Showing already imported episodes as downloading in Series index

This commit is contained in:
Bogdan
2023-11-06 17:39:42 +02:00
committed by Mark McDowall
parent 10fbc4e25a
commit 8c3a0ebaba
3 changed files with 51 additions and 34 deletions
@@ -15,7 +15,10 @@ function createSeriesQueueDetailsSelector(
(queueItems) => {
return queueItems.reduce(
(acc: SeriesQueueDetails, item) => {
if (item.seriesId !== seriesId) {
if (
item.trackedDownloadState === 'imported' ||
item.seriesId !== seriesId
) {
return acc;
}