From 7e384ebff8e04cc5ccf77267056c175b004141b3 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 13 Nov 2023 14:41:49 +0100 Subject: [PATCH] Add image name to GUI footer --- tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 9af641013..b2f277524 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino @@ -408,7 +408,7 @@ const char HTTP_COUNTER[] PROGMEM = "
"; const char HTTP_END[] PROGMEM = - "

Tasmota %s " D_BY " Theo Arends
" + "

Tasmota %s%s " D_BY " Theo Arends
" "" "" ""; @@ -1005,7 +1005,7 @@ void WSContentStop(void) { WSContentSend_P(HTTP_COUNTER); } } - WSContentSend_P(HTTP_END, TasmotaGlobal.version); + WSContentSend_P(HTTP_END, TasmotaGlobal.version, TasmotaGlobal.image_name); WSContentEnd(); }