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/147bb5476bbfe589f2d04206d7dc1e00017ee829/UI/Series/SeriesCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Series/SeriesCollection.js

24 lines
546 B

'use strict';
define(
[
'backbone',
'Series/SeriesModel'
], function (Backbone, SeriesModel) {
var Collection = Backbone.Collection.extend({
url : window.ApiRoot + '/series',
model: SeriesModel,
comparator: function (model) {
return model.get('title');
},
state: {
sortKey: 'title',
order : -1
}
});
var collection = new Collection();
return collection;
});