Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/9e08dffa58c4a8b39bca97a3a6b31e0e632b18ec/UI/Commands/CommandController.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/UI/Commands/CommandController.js

17 lines
388 B

'use strict';
define({
Execute: function (name, properties) {
var data = { command: name };
if (properties) {
$.extend(data, properties);
}
return $.ajax({
type: 'POST',
url : window.ApiRoot + '/command',
data: JSON.stringify(data)
});
}
});