Proper passing of hi and forced flags

This should fix issue #2350.
The same problem existed for Movies and Episodes.
This commit is contained in:
JayZed 2024-01-18 14:06:08 -05:00
parent 828ac34074
commit 8675eae9bc
2 changed files with 4 additions and 4 deletions

View File

@ -55,8 +55,8 @@ const WantedMoviesView: FunctionComponent = () => {
radarrId,
form: {
language: item.code2,
hi,
forced: false,
hi: item.hi,
forced: item.forced,
},
}
);

View File

@ -72,8 +72,8 @@ const WantedSeriesView: FunctionComponent = () => {
episodeId,
form: {
language: item.code2,
hi,
forced: false,
hi: item.hi,
forced: item.forced,
},
}
);