Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/2602a0550dfadaee2081dbac16eb0760e32535e1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
13 additions and
11 deletions
@ -1,6 +1,6 @@
# coding=utf-8
bazarr_version = ' 0.8.3. 2 '
bazarr_version = ' 0.8.3. 3 '
import os
os . environ [ " SZ_USER_AGENT " ] = " Bazarr/1 "
@ -190,6 +190,7 @@ def shutdown():
else :
stop_file . write ( ' ' )
stop_file . close ( )
sys . exit ( 0 )
@route ( base_url + ' restart ' )
@ -208,6 +209,7 @@ def restart():
logging . info ( ' Bazarr is being restarted... ' )
restart_file . write ( ' ' )
restart_file . close ( )
sys . exit ( 0 )
@route ( base_url + ' wizard ' )
@ -276,11 +276,11 @@
$('#loader_text').text("Bazarr is restarting. Please Wait...");
$.ajax( {
url: " { { base_url } } restart",
async: true
async: true,
error: (function() {
setTimeout(function() { setInterval ( ping , 2 0 0 0 ) ; } ,8000);
})
})
.done(function() {
setTimeout(function() { setInterval ( ping , 2 0 0 0 ) ; } ,8000);
});
});
% from config import settings
@ -419,12 +419,12 @@
$('#restart').on('click', function() {
$('#loader_text').text("Bazarr is restarting, please wait...");
$.ajax( {
url: "{ { base_url } } restart",
async: true
})
.done(function(){
setTimeout(function(){ setInterval ( ping , 2 0 0 0 ) ; } ,8000);
})
url: "{ { base_url } } restart",
async: true,
error: (function () {
setTimeout(function () { setInterval ( ping , 2 0 0 0 ) ; } , 8000);
})
});
});
% from config import settings