Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/430f76e6c7df810a53761a39ac741a7646cae76c/UI/Mixins/AsChangeTrackingModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Mixins/AsChangeTrackingModel.js

32 lines
616 B

'use strict';
define(
function () {
return function () {
var originalInit = this.prototype.initialize;
this.prototype.initialize = function () {
this.isSaved = true;
this.on('change', function () {
this.isSaved = false;
}, this);
this.on('sync', function () {
this.isSaved = true;
}, this);
if (originalInit) {
originalInit.call(this);
}
};
return this;
};
}
);