Fixed msg not defined error

This commit is contained in:
Spacehuhn 2021-02-01 21:50:24 +01:00
parent 60be948cc0
commit bbafd9fdf2
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ function getFile(adr, callback, timeout, method, onTimeout, onError) {
request.onreadystatechange = function () {
if (this.readyState == 4) {
if (this.status == 200) {
showMessage();
showMessage("CONNECTED");
callback(this.responseText);
}
}