From c7af04bbf664a8563c286796af857e2ff1bb1023 Mon Sep 17 00:00:00 2001 From: Christian Herzog Date: Sun, 29 Sep 2019 19:13:43 +0200 Subject: [PATCH] disable status outside of recovery --- components/wifi-manager/code.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/components/wifi-manager/code.js b/components/wifi-manager/code.js index 8acbb4da..40330ea5 100644 --- a/components/wifi-manager/code.js +++ b/components/wifi-manager/code.js @@ -498,9 +498,9 @@ $(document).ready(function(){ } blockAjax = false; }) - .fail(function() { - //don't do anything, the server might be down while esp32 recalibrates radio - }); + .fail(function() { + //don't do anything, the server might be down while esp32 recalibrates radio + }); } function getConfig() { @@ -514,7 +514,7 @@ $(document).ready(function(){ $("#autoexec-cb")[0].checked=false; } } - if (data.hasOwnProperty('recovery')) { + if (data.hasOwnProperty('recovery')) { //move to status! if (data["recovery"] === 1) { recovery = true; $("#otadiv").show(); @@ -522,6 +522,7 @@ $(document).ready(function(){ } else { recovery = false; $("#otadiv").hide(); + enableStatusTimer = false; } } if (data.hasOwnProperty('list')) { @@ -535,7 +536,7 @@ $(document).ready(function(){ }); } }) - .fail(function() { - console.log("failed to fetch config!"); - }); + .fail(function() { + console.log("failed to fetch config!"); + }); }