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

Fix for redirect of HTTP Update, so that it always returns to the root / instead of /update (#3420)

This commit is contained in:
E. van Harten 2017-10-15 09:03:28 +02:00 committed by Ivan Grokhotkov
parent 80aeacfb80
commit b81ef01ef7

View File

@ -14,7 +14,7 @@ static const char serverIndex[] PROGMEM =
</form>
</body></html>)";
static const char successResponse[] PROGMEM =
"<META http-equiv=\"refresh\" content=\"15;URL=\">Update Success! Rebooting...\n";
"<META http-equiv=\"refresh\" content=\"15;URL=/\">Update Success! Rebooting...\n";
ESP8266HTTPUpdateServer::ESP8266HTTPUpdateServer(bool serial_debug)
{