Skip to content

Commit d2fde8d

Browse files
Fix trivial extra "\n" on web update success (#6350)
Fixes #3290
1 parent 824a833 commit d2fde8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ static const char serverIndex[] PROGMEM =
1616
</form>
1717
</body></html>)";
1818
static const char successResponse[] PROGMEM =
19-
"<META http-equiv=\"refresh\" content=\"15;URL=/\">Update Success! Rebooting...\n";
19+
"<META http-equiv=\"refresh\" content=\"15;URL=/\">Update Success! Rebooting...";
2020

2121
template <typename ServerType>
2222
ESP8266HTTPUpdateServerTemplate<ServerType>::ESP8266HTTPUpdateServerTemplate(bool serial_debug)

0 commit comments

Comments
 (0)