Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/7cf7b5e05107a589eda1b3e5895b27e62399e390/UI/Series/SeriesCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Series/SeriesCollection.js

21 lines
478 B

"use strict";
define(['app', 'Series/SeriesModel'], function () {
NzbDrone.Series.SeriesCollection = Backbone.PageableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/series',
model: NzbDrone.Series.SeriesModel,
mode: 'client',
state: {
sortKey: "title",
order: -1,
pageSize: 1000000
},
queryParams: {
sortKey: null,
order: null
}
});
});