check_init - check init response
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
root
2024-08-13 09:14:52 +02:00
parent 52164452b6
commit cc6899fa91
3 changed files with 15 additions and 6 deletions

View File

@@ -62,9 +62,12 @@ function check_init() {
$("#previous").html('Previous install has found...');
setTimeout(redirectToManage, 3000);
}
else {
else if (data=='WAIT') {
setTimeout(check_init, 1000);
}
else {
// UNEXPECTED ERROR
}
});
}