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

15 lines
384 B

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