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

14 lines
352 B

'use strict';
define(
[
'Settings/SettingsModelBase'
], function (SettingsModelBase) {
return SettingsModelBase.extend({
url : window.ApiRoot + '/settings/host',
successMessage: 'General settings saved',
errorMessage : 'Failed to save general settings'
});
});