mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05: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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user