Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/577761c3f2fc92e0768b02c1d232ba46e3ef348f/UI/System/StatusModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/System/StatusModel.js

17 lines
305 B

'use strict';
define(
[
'backbone',
'constants'
], function (Backbone) {
var model = Backbone.Model.extend({
url: Constants.ApiRoot + '/system/status'
});
var instance = new model();
instance.fetch();
return instance;
});