Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
P-R-O-C-H-Y committed Dec 5, 2023
1 parent 2fbf4aa commit c115e84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/Update/src/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ bool UpdateClass::setMD5(const char * expected_md5){
{
return false;
}
_target_md5 = expected_md5.toLowerCase();
_target_md5 = expected_md5;
_target_md5.toLowerCase();
return true;
}

Expand Down

0 comments on commit c115e84

Please sign in to comment.