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

12 lines
262 B

window.ApiRoot = '/api';
var statusText = $.ajax({
type : 'GET',
url : window.ApiRoot + '/system/status',
12 years ago
async: false
}).responseText;
window.ServerStatus = JSON.parse(statusText);
$('#footer-region .version').html(window.ServerStatus.version);