From 6767a9809ae58dd1317f5ee429f34f1237576ebb Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 18 Jun 2021 16:47:14 +0200 Subject: [PATCH] Fix GUI console initial update time --- tasmota/support.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasmota/support.ino b/tasmota/support.ino index 16852a565..bdd9f879e 100644 --- a/tasmota/support.ino +++ b/tasmota/support.ino @@ -2300,8 +2300,7 @@ bool GetLog(uint32_t req_loglevel, uint32_t* index_p, char** entry_pp, size_t* l #endif // ESP32 if (!index) { // Dump all - index = TasmotaGlobal.log_buffer_pointer +1; - if (index > 255) { index = 1; } + index = TasmotaGlobal.log_buffer[0]; } do {