mirror of
https://github.com/Radarr/Radarr
synced 2026-04-20 22:53:39 +02:00
Update state with the filtered movie file languages
Due to filtering the languages in /moviefile/bulk to not allow Any or Original, we're updating the state with the actual languages returned by the API.
This commit is contained in:
parent
4aa259a666
commit
b646386e77
1 changed files with 4 additions and 4 deletions
|
|
@ -271,11 +271,11 @@ export const actionHandlers = handleThunks({
|
|||
props.qualityCutoffNotMet = movieFile.qualityCutoffNotMet;
|
||||
props.customFormats = movieFile.customFormats;
|
||||
props.customFormatScore = movieFile.customFormatScore;
|
||||
props.languages = movieFile.languages;
|
||||
props.quality = movieFile.quality;
|
||||
props.edition = movieFile.edition;
|
||||
props.languages = file.languages;
|
||||
props.quality = file.quality;
|
||||
props.releaseGroup = file.releaseGroup;
|
||||
props.indexerFlags = file.indexerFlags;
|
||||
props.releaseGroup = movieFile.releaseGroup;
|
||||
props.indexerFlags = movieFile.indexerFlags;
|
||||
|
||||
return updateItem({
|
||||
section,
|
||||
|
|
|
|||
Loading…
Reference in a new issue