We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561426c commit 6218c40Copy full SHA for 6218c40
cores/esp8266/Updater.cpp
@@ -175,7 +175,7 @@ bool UpdaterClass::end(bool evenIfRemaining){
175
176
_md5.calculate();
177
if(_target_md5.length()) {
178
- if(_target_md5 != _md5.toString()){
+ if(strcasecmp(_target_md5.c_str(), _md5.toString().c_str()) != 0){
179
_setError(UPDATE_ERROR_MD5);
180
_reset();
181
return false;
0 commit comments