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

10 lines
355 B

"use strict";
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
model : NzbDrone.Series.EpisodeModel,
comparator: function (model) {
return model.get('airDate');
}
});
});