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

23 lines
473 B

"use strict";
define(['app'], function () {
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
mutators: {
seasonTitle: function () {
var seasonNumber = this.get('seasonNumber');
if (seasonNumber === 0) {
return "Specials";
}
return "Season " + seasonNumber;
}
},
defaults: {
seasonNumber: 0
}
});
});