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

14 lines
382 B

"use strict";
define(['app'], function () {
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
mutators: {
bestDateString : function () {
return bestDateString(this.get('airDate'));
},
paddedEpisodeNumber: function () {
return this.get('episodeNumber');
}
}
});
});