Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/c8c67a825440b5acb7eebdbe81b3decd79b36b51/UI/Mixins/backbone.ajax.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Mixins/backbone.ajax.js

29 lines
707 B

//try to add ajax data as query string to DELETE calls.
'use strict';
define(function () {
return function () {
var original = this.ajax;
this.ajax = function () {
var xhr = arguments[0];
//check if ajax call was made with data option
if (xhr && xhr.data && xhr.type === 'DELETE') {
if (xhr.url.indexOf('?') === -1) {
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
else {
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
delete xhr.data;
}
return original.apply(this, arguments);
};
};
});