1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-15 15:18:16 +00:00

OTA don't error when upgrading from no password to password mode (#309)

This commit is contained in:
Otto Winter 2019-01-08 12:51:26 +01:00
parent 6645894d7a
commit 5c9ae37d89

View File

@ -187,9 +187,6 @@ def perform_ota(sock, password, file_handle, filename):
send_check(sock, result, 'auth result')
receive_exactly(sock, 1, 'auth result', RESPONSE_AUTH_OK)
else:
if password:
raise OTAError("Password specified, but ESP doesn't accept password!")
file_size_encoded = [
(file_size >> 24) & 0xFF,