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

Fixed: Indexer not removed in UI when deleted

Indexer doesn't get removed because createAjaxReqest expects JSON type return, however after net6 provider delete event returns text/html type.
pull/633/head
Qstick 3 years ago
parent 44f12d9569
commit cd7c73bad3

@ -14,6 +14,7 @@ function createRemoveItemHandler(section, url) {
const ajaxOptions = {
url: `${url}/${id}?${$.param(queryParams, true)}`,
dataType: 'text',
method: 'DELETE'
};

Loading…
Cancel
Save