From 1adf21d9743ed588a960d8019ad076575c32a311 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Fri, 26 Jul 2019 14:57:09 -0700 Subject: [PATCH] Fix trivial extra "\n" on web update success Fixes #3290 --- .../ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h b/libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h index 8131caf60c..b543073f44 100644 --- a/libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h +++ b/libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h @@ -16,7 +16,7 @@ static const char serverIndex[] PROGMEM = )"; static const char successResponse[] PROGMEM = - "Update Success! Rebooting...\n"; + "Update Success! Rebooting..."; template ESP8266HTTPUpdateServerTemplate::ESP8266HTTPUpdateServerTemplate(bool serial_debug)