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/2d2c6f866cb74226e85f4f5e376f7508c47438ac/UI/Settings/SettingsModel.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Settings/SettingsModel.js

10 lines
302 B

'use strict';
define(['app',
'Settings/SettingsModelBase'], function (App, SettingsModelBase) {
return SettingsModelBase.extend({
url : window.ApiRoot + '/settings',
successMessage: 'Settings saved',
errorMessage : 'Failed to save settings'
12 years ago
});
});