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

28 lines
631 B

//try to add ajax data as query string to DELETE calls.
(function (){
var original = Backbone.ajax;
Backbone.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);
}
}
if (original){
original.apply (this, arguments);
}
};
12 years ago
} ());