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/5f93cbc83b61b276f424d4a42f97ad35b9cb64c9/UI/System/StatusModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/System/StatusModel.js

16 lines
290 B

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