Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/4cd75cd8aa3b4c251f37a380de0c5e6bbea288ca/UI/Calendar/CalendarCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Calendar/CalendarCollection.js

10 lines
359 B

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