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/154a6b39be035a7b9b73b202d3719245ab575d5e/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;
};
}
);