mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-06 08:28:37 +01:00
Fixed: Grouped calendar events not correctly showing as downloading
Closes #6441
This commit is contained in:
parent
d7aea82e45
commit
8f0514a91d
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ function createIsDownloadingSelector() {
|
|||
(state) => state.queue.details,
|
||||
(episodeIds, details) => {
|
||||
return details.items.some((item) => {
|
||||
return item.episode && episodeIds.includes(item.episode.id);
|
||||
return !!(item.episodeId && episodeIds.includes(item.episodeId));
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue