From 371870a8269b7705e914fe9cc81241da3c9812c8 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 26 May 2020 17:38:34 +0200 Subject: [PATCH] Fix ESP32 GUI template upload Fix ESP32 GUI template upload (#8534) --- tasmota/xdrv_01_webserver.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/xdrv_01_webserver.ino b/tasmota/xdrv_01_webserver.ino index 4fb1303ed..e4f2bd4a4 100644 --- a/tasmota/xdrv_01_webserver.ino +++ b/tasmota/xdrv_01_webserver.ino @@ -448,7 +448,7 @@ const char HTTP_FORM_OTHER[] PROGMEM = "
" "

" "
 " D_TEMPLATE " " - "

" + "

" // We need ' apostrophe here as the template contains " quotation mark "

" "
" "
" @@ -2041,7 +2041,7 @@ void HandleOtherConfiguration(void) void OtherSaveSettings(void) { - char tmp[TOPSZ]; + char tmp[300]; // Needs to hold complete ESP32 template of minimal 230 chars char webindex[5]; char friendlyname[TOPSZ]; char message[LOGSZ];