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/fca4d2004693f7aa5df2b806da73647a2e82a5c4/UI/Shared/Toolbar/ButtonModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Shared/Toolbar/ButtonModel.js

14 lines
316 B

'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
'target' : '/nzbdrone/route',
'title' : '',
'active' : false,
'tooltip': undefined }
});
});