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/881686e99485ff2e39c2f3637d5b7f0bfce9f672/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)
});
}
});