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/fa6888e964257bb5d63c3c3e9f39166ca585562e/UI/Calendar/Collection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Calendar/Collection.js

18 lines
463 B

'use strict';
define(
[
'backbone',
'Series/EpisodeModel'
], function (Backbone, EpisodeModel) {
return Backbone.Collection.extend({
url : window.ApiRoot + '/calendar',
model: EpisodeModel,
comparator: function (model) {
var date = new Date(model.get('airDate'));
var time = date.getTime();
return time;
}
});
});