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 << "
"; }