Also accept invalid spelling from Updater

Fixes https://github.com/esphome/issues/issues/564 partly.

At least the error message will now be a better one.
This commit is contained in:
Otto Winter
2019-09-01 11:42:37 +02:00
parent be1e4c0a1d
commit fd1dc24ac6
2 changed files with 4 additions and 3 deletions

View File

@@ -182,11 +182,11 @@ void OTAComponent::handle_() {
error_code = OTA_RESPONSE_ERROR_INVALID_BOOTSTRAPPING;
goto error;
}
if (ss.indexOf("new Flash config wrong") != -1) {
if (ss.indexOf("new Flash config wrong") != -1 || ss.indexOf("new Flash config wsong") != -1) {
error_code = OTA_RESPONSE_ERROR_WRONG_NEW_FLASH_CONFIG;
goto error;
}
if (ss.indexOf("Flash config wrong real") != -1) {
if (ss.indexOf("Flash config wrong real") != -1 || ss.indexOf("Flash config wsong real") != -1) {
error_code = OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG;
goto error;
}