Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/4ea35ae626ce0ac3d9554bcf51fc9f58fa57279e/UI/Series/SeriesCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/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;
});