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/0894fc0e777b1f49481a39d7e19f614599605199/UI/Mixins/AsChangeTrackingModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/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;
};
}
);