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

Fixed: Manual Import adding empty rows after selecting movie

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/4958/head
Qstick 5 years ago
parent 7ddb8ecc37
commit 87bf6b5977

@ -129,12 +129,14 @@ export const actionHandlers = handleThunks({
...currentIds.map((id) => updateItem({
section,
id,
isReprocessing: false
isReprocessing: false,
updateOnly: true
})),
...payload.ids.map((id) => updateItem({
section,
id,
isReprocessing: true
isReprocessing: true,
updateOnly: true
}))
]));
@ -166,7 +168,8 @@ export const actionHandlers = handleThunks({
data.map((item) => updateItem({
section,
...item,
isReprocessing: false
isReprocessing: false,
updateOnly: true
}))
));
});
@ -180,7 +183,8 @@ export const actionHandlers = handleThunks({
payload.ids.map((id) => updateItem({
section,
id,
isReprocessing: false
isReprocessing: false,
updateOnly: true
}))
));
});

Loading…
Cancel
Save