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

16 lines
343 B

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