mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 05:35:29 +00:00
Fixed: Manual import when quality was selected before episodes
Closes #4065
This commit is contained in:
parent
baa41b2c13
commit
c75c546888
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ export const actionHandlers = handleThunks({
|
|||
path: item.path,
|
||||
seriesId: item.series.id,
|
||||
season: item.season,
|
||||
episodeIds: item.episodes.map((e) => e.id),
|
||||
episodeIds: (item.episodes || []).map((e) => e.id),
|
||||
quality: item.quality,
|
||||
language: item.language,
|
||||
downloadId: item.downloadId
|
||||
|
|
Loading…
Reference in a new issue