diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 9af641013680..b2f277524556 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(); }