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 committed by GitHub
parent d29b280d82
commit 47231977d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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,