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

21 lines
525 B

window.NzbDrone = {};
window.NzbDrone.ApiRoot = '/api';
var statusText = $.ajax({
type : 'GET',
url : window.NzbDrone.ApiRoot + '/system/status',
12 years ago
async: false
}).responseText;
window.NzbDrone.ServerStatus = JSON.parse(statusText);
var footerText = window.NzbDrone.ServerStatus.version;
$(document).ready(function () {
if (window.NzbDrone.ServerStatus.branch != 'master') {
footerText += '</br>' + window.NzbDrone.ServerStatus.branch;
}
$('#footer-region .version').html(footerText);
});