mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 15:56:58 +00:00
Fixed: Manual Import breaking if quality is selected before series
This commit is contained in:
parent
49bf3f4512
commit
675d948a1f
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ export const actionHandlers = handleThunks({
|
|||
return {
|
||||
id,
|
||||
path: item.path,
|
||||
seriesId: item.series.id,
|
||||
seriesId: item.series ? item.series.id : undefined,
|
||||
season: item.season,
|
||||
episodeIds: (item.episodes || []).map((e) => e.id),
|
||||
quality: item.quality,
|
||||
|
|
Loading…
Reference in a new issue