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/548d255d8ad2100af82fbacef6208533e99a4058/UI/Series/SeasonModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Series/SeasonModel.js

14 lines
210 B

'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
seasonNumber: 0
}
});
});