Skip to content

Commit

Permalink
Proper passing of hi and forced flags
Browse files Browse the repository at this point in the history
This should fix issue #2350.
The same problem existed for Movies and Episodes.
  • Loading branch information
JaiZed committed Jan 18, 2024
1 parent 828ac34 commit 8675eae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/Wanted/Movies/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ const WantedMoviesView: FunctionComponent = () => {
radarrId,
form: {
language: item.code2,
hi,
forced: false,
hi: item.hi,
forced: item.forced,
},
}
);
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/Wanted/Series/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const WantedSeriesView: FunctionComponent = () => {
episodeId,
form: {
language: item.code2,
hi,
forced: false,
hi: item.hi,
forced: item.forced,
},
}
);
Expand Down

0 comments on commit 8675eae

Please sign in to comment.