From be8ece2413fb767b4b917d9b1c0ecc5edfb23337 Mon Sep 17 00:00:00 2001 From: Skip Hansen Date: Wed, 17 Jul 2024 09:51:07 -0700 Subject: [PATCH] Remove "Ch" from SugGhz channel to fix LCD truncation on mini V4 AP. --- ESP32_AP-Flasher/src/web.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP32_AP-Flasher/src/web.cpp b/ESP32_AP-Flasher/src/web.cpp index 4272ce6f..7572003a 100644 --- a/ESP32_AP-Flasher/src/web.cpp +++ b/ESP32_AP-Flasher/src/web.cpp @@ -119,7 +119,7 @@ void wsSendSysteminfo() { ApChanString += "disabled"; } else { - ApChanString += "Ch " + String(apInfo.SubGhzChannel); + ApChanString += String(apInfo.SubGhzChannel); } } setVarDB("ap_ch", ApChanString);