mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
Fixed: Queued downloads not showing on episodes properly
This commit is contained in:
@@ -10,11 +10,7 @@ function createQueueItemSelector() {
|
||||
}
|
||||
|
||||
return details.find((item) => {
|
||||
if (item.episode) {
|
||||
return item.episode.id === episodeId;
|
||||
}
|
||||
|
||||
return false;
|
||||
return item.episodeId === episodeId;
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user