diff --git a/BSB_LAN/BSB_LAN.ino b/BSB_LAN/BSB_LAN.ino index 45dd800c..aa8e91e3 100644 --- a/BSB_LAN/BSB_LAN.ino +++ b/BSB_LAN/BSB_LAN.ino @@ -4894,7 +4894,6 @@ void loop() { if (!strcmp_P(cLineBuffer, PSTR("/favicon.svg"))) { printHTTPheader(HTTP_OK, MIME_TYPE_IMAGE_SVG, HTTP_DO_NOT_ADD_CHARSET_TO_HEADER, HTTP_FILE_NOT_GZIPPED, HTTP_NO_DOWNLOAD, HTTP_AUTO_CACHE_AGE); printToWebClient(PSTR("\r\n")); - printPStr(svg_favicon_header, sizeof(svg_favicon_header)); printPStr(svg_favicon, sizeof(svg_favicon)); flushToWebClient(); break; diff --git a/BSB_LAN/html_strings.h b/BSB_LAN/html_strings.h index ce1a44e7..f29df63a 100644 --- a/BSB_LAN/html_strings.h +++ b/BSB_LAN/html_strings.h @@ -1,24 +1,22 @@ #define NEWLINE "" // set to "\n" to aid javascript debugging, set to "" to save space in transfer to client -const char svg_favicon_header[] PROGMEM_LATE = - "" - ""; -const char svg_favicon[] PROGMEM_LATE = - ""; - // The following strings contain html/css/javascript code that has been manually indented; don't let automatic indent break this! // *INDENT-OFF* +const char svg_favicon[] PROGMEM_LATE = + ""; + const char favicon[] PROGMEM_LATE = { 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x08, 0x06, 0x00, 0x00, 0x00, 0x1F, 0xF3, 0xFF,