Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/9af5dbdc051835d5ad15e1899f4443d4c10373a8/NzbDrone.Backbone/Series/SeasonModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Backbone/Series/SeasonModel.js

22 lines
458 B

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
}
});
});