Skip to content

Commit

Permalink
UpdateClass::setMD5 store expected md5 in lowercase (#8959)
Browse files Browse the repository at this point in the history
* set _target_md5 to lowercase

* fix errors
  • Loading branch information
P-R-O-C-H-Y committed Dec 5, 2023
1 parent 609a947 commit 7ecde87
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libraries/Update/src/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ bool UpdateClass::setMD5(const char * expected_md5){
return false;
}
_target_md5 = expected_md5;
_target_md5.toLowerCase();
return true;
}

Expand Down

0 comments on commit 7ecde87

Please sign in to comment.