Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/24a5259163842bf46d23899a6c171cd02b0fb65a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -207,12 +207,12 @@
$.getJSON(" { { base_url } } test_url/" + protocol + "/" + encodeURIComponent(radarr_url), function (data) {
if (data.status) {
$('#radarr_validated').checkbox('check');
$('#radarr_validation_result').text('Test s uccessful: Radarr v' + data.version).css('color', 'green');
$('#radarr_validation_result').text('Test S uccessful: Radarr v' + data.version).css('color', 'green');
$('.form').form('validate form');
$('#loader').removeClass('active');
} else {
$('#radarr_validated').checkbox('uncheck');
$('#radarr_validation_result').text('Test f ailed').css('color', 'red');
$('#radarr_validation_result').text('Test F ailed').css('color', 'red');
$('.form').form('validate form');
$('#loader').removeClass('active');
}