1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Fixed: Manual Import language handling

This commit is contained in:
Qstick
2021-12-24 11:04:27 -06:00
parent 974e44ce48
commit d1fa92bc6c
15 changed files with 328 additions and 50 deletions
@@ -148,9 +148,10 @@ export const actionHandlers = handleThunks({
return {
id,
path: item.path,
movieId: item.movie.id,
movieId: item.movie ? item.movie.id : undefined,
quality: item.quality,
languages: item.languages,
releaseGroup: item.releaseGroup,
downloadId: item.downloadId
};
});