1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Fixing final write length for sendContent_P

This commit is contained in:
John Socha-Leialoha 2015-10-11 13:32:10 -07:00
parent 0bd3b72550
commit 578c90f04c

View File

@ -222,7 +222,7 @@ void ESP8266WebServer::sendContent_P(PGM_P content) {
}
else {
// reached terminator
contentUnitLen = contentNext - content;
contentUnitLen = contentNext - contentUnit;
content = NULL;
}