Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/78297e62b24a10a42461b47ca5dc368b5b2ab81f/UI/Settings/DownloadClient/SabView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Settings/DownloadClient/SabView.js

16 lines
340 B

'use strict';
define(
[
'marionette',
'Mixins/AsModelBoundView',
'bootstrap'
], function (Marionette, AsModelBoundView) {
var view = Marionette.ItemView.extend({
template : 'Settings/DownloadClient/SabViewTemplate'
});
return AsModelBoundView.call(view);
});