UpdateClass::setMD5 store expected md5 in lowercase (#8959)

* set _target_md5 to lowercase

* fix errors
This commit is contained in:
Jan Procházka 2023-12-05 12:30:26 +01:00 committed by GitHub
parent 609a9477c1
commit 7ecde87701
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -278,6 +278,7 @@ bool UpdateClass::setMD5(const char * expected_md5){
return false;
}
_target_md5 = expected_md5;
_target_md5.toLowerCase();
return true;
}