Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/f7c78da4ed87b66f445fa3a3475902c5a66ffa1d?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed backbone ajax differed

pull/2/head
kay.one 12 years ago
parent 1613643307
commit f7c78da4ed

@ -9,7 +9,7 @@
var xhr = arguments[0]; var xhr = arguments[0];
//check if ajax call was made with data option //check if ajax call was made with data option
if (xhr && xhr.data && xhr.type == 'DELETE') { if (xhr && xhr.data && xhr.type === 'DELETE') {
if (xhr.url.indexOf('?') === -1) { if (xhr.url.indexOf('?') === -1) {
xhr.url = xhr.url + '?' + $.param(xhr.data); xhr.url = xhr.url + '?' + $.param(xhr.data);
} }
@ -18,9 +18,6 @@
} }
} }
if (original) { return original.apply(this, arguments);
original.apply(this, arguments);
}
}; };
}()); }());
Loading…
Cancel
Save