Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/50fb06b23a502c3a108c2e17038e4bfe85cbcd59 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix a issue that hi and forced is not properly updated on series subtitle upload modal

pull/1523/head
LASER-Yi 4 years ago
parent 7e48413493
commit 50fb06b23a

@ -90,14 +90,15 @@ const SeriesUploadModal: FunctionComponent<SeriesProps & BaseModalProps> = ({
const tasks = items
.filter((v) => v.payload.instance !== undefined)
.map((v) => {
const { code2, hi, forced } = v.language!;
const { sonarrEpisodeId: episodeid } = v.payload.instance!;
const { hi, forced, payload, language } = v;
const { code2 } = language!;
const { sonarrEpisodeId: episodeid } = payload.instance!;
const form: FormType.UploadSubtitle = {
file: v.file,
language: code2,
hi: hi ?? false,
forced: forced ?? false,
hi: hi,
forced: forced,
};
return createTask(

Loading…
Cancel
Save