mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Calendar error after queue is refreshed
This commit is contained in:
parent
fc376bfe3f
commit
e10c92878d
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ function createMissingEpisodeIdsSelector() {
|
|||
moment(airDateUtc).isAfter(start) &&
|
||||
moment(airDateUtc).isBefore(end) &&
|
||||
isBefore(episode.airDateUtc) &&
|
||||
!queueDetails.some((details) => details.episode.id === episode.id)
|
||||
!queueDetails.some((details) => !!details.episode && details.episode.id === episode.id)
|
||||
) {
|
||||
acc.push(episode.id);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue