Unverified Commit 7ecde877 authored by Jan Procházka's avatar Jan Procházka Committed by GitHub

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

* set _target_md5 to lowercase

* fix errors
parent 609a9477
...@@ -278,6 +278,7 @@ bool UpdateClass::setMD5(const char * expected_md5){ ...@@ -278,6 +278,7 @@ bool UpdateClass::setMD5(const char * expected_md5){
return false; return false;
} }
_target_md5 = expected_md5; _target_md5 = expected_md5;
_target_md5.toLowerCase();
return true; return true;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment