mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-20 13:07:03 +00:00
Fix for incorrect reloading URL
This commit is contained in:
parent
376ee719fb
commit
fb2860396a
2 changed files with 4 additions and 4 deletions
|
@ -194,9 +194,9 @@
|
|||
|
||||
function ping() {
|
||||
$.ajax({
|
||||
url: protocol + '://' + public_ip + ':{{port}}{{base_url}}',
|
||||
url: protocol + '//' + public_ip + ':{{port}}{{base_url}}',
|
||||
success: function(result) {
|
||||
window.location.href= protocol + '://' + public_ip + ':{{port}}{{base_url}}';
|
||||
window.location.href= protocol + '//' + public_ip + ':{{port}}{{base_url}}';
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -250,9 +250,9 @@
|
|||
|
||||
function ping() {
|
||||
$.ajax({
|
||||
url: protocol + '://' + public_ip + ':{{port}}{{base_url}}',
|
||||
url: protocol + '//' + public_ip + ':{{port}}{{base_url}}',
|
||||
success: function(result) {
|
||||
window.location.href= protocol + '://' + public_ip + ':{{port}}{{base_url}}';
|
||||
window.location.href= protocol + '//' + public_ip + ':{{port}}{{base_url}}';
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue