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

15 lines
384 B

12 years ago
"use strict";
define(['app'], function (app) {
NzbDrone.History.Model = Backbone.Model.extend({
12 years ago
mutators: {
seasonNumber: function () {
return this.get('episode').seasonNumber;
},
12 years ago
12 years ago
paddedEpisodeNumber: function () {
return this.get('episode').episodeNumber.pad(2);
}
}
12 years ago
});
});