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.
pull/10946/head
Bogdan 4 weeks ago
parent 4aa259a666
commit b646386e77

@ -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…
Cancel
Save