mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 22:07:07 -04: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…
Add table
Add a link
Reference in a new issue