1
0
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:
Bogdan
2025-03-24 12:56:30 +02:00
parent 4aa259a666
commit b646386e77

View File

@@ -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,