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/9181b1bb91f1f6ab14e234cbbe950b60e5b2fbbe/UI/Commands/CommandController.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Commands/CommandController.js

11 lines
276 B

"use strict";
define(['app'], function () {
NzbDrone.Commands.Execute = function (name) {
return $.ajax({
type: 'POST',
url : NzbDrone.Constants.ApiRoot + '/command',
data: JSON.stringify({command: name})
});
};
});