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

16 lines
329 B

12 years ago
'use strict';
define([
'app', 'Settings/SettingsModel'
12 years ago
], function () {
NzbDrone.Settings.System.SystemView = Backbone.Marionette.ItemView.extend({
template: 'Settings/System/SystemTemplate',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
});
});