mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-12 07:41:03 -08:00
Fixed msg not defined error
This commit is contained in:
@@ -75,7 +75,7 @@ function getFile(adr, callback, timeout, method, onTimeout, onError) {
|
|||||||
request.onreadystatechange = function () {
|
request.onreadystatechange = function () {
|
||||||
if (this.readyState == 4) {
|
if (this.readyState == 4) {
|
||||||
if (this.status == 200) {
|
if (this.status == 200) {
|
||||||
showMessage();
|
showMessage("CONNECTED");
|
||||||
callback(this.responseText);
|
callback(this.responseText);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user