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

16 lines
281 B

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