fix location

This commit is contained in:
dadav 2020-04-18 10:22:18 +02:00
parent 35ea36ef33
commit eb76cc7023

@ -91,15 +91,13 @@ POST_RESPONSE = """
<script type="text/javascript"> <script type="text/javascript">
function checkPwnagotchi() { function checkPwnagotchi() {
var target = 'http://' + document.location.hostname + ':8080/';
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.open('GET', document.location.hostname + ':8080/'); xhr.open('GET', target);
xhr.onload = function () {
console.log('DONE: ', xhr.status);
};
xhr.onreadystatechange = function () { xhr.onreadystatechange = function () {
if (xhr.readyState == 4) { if (xhr.readyState == 4) {
if (xhr.status == 200) { if (xhr.status == 200 || xhr.status == 401) {
window.location.replace("http://" + document.location.hostname + ':8080/'); window.location.replace(target);
}else{ }else{
setTimeout(checkPwnagotchi, 1000); setTimeout(checkPwnagotchi, 1000);
} }