From fea26da35b9d057d80846f333fa2ed5d0154c906 Mon Sep 17 00:00:00 2001 From: Anon2026 Date: Thu, 22 Jan 2026 00:39:42 +0300 Subject: [PATCH] Small webconsole html fix --- daemon/HTTPServer.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 2d2747b9..71e569fc 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -392,7 +392,10 @@ namespace http { } s << "\r\n\r\n"; } - s << "\r\n\r\n"; + if ((outputFormat == OutputFormatEnum::forWebConsole) || !includeHiddenContent) { + s << "\r\n"; // class slidecontent + } + s << "\r\n"; // class slide if (outputFormat == OutputFormatEnum::forQtUi) { s << "
"; }