Closed
Description
Hi!
I was implementing an http update based on a cloud server that returns the MD5 in Uppercase, and gets rejected by the end() method. I sorted it out by rewriting it to:
_md5.calculate(); if(_target_md5.length()) { _target_md5.toLowerCase(); if(_target_md5 != _md5.toString()){ _abort(UPDATE_ERROR_MD5); return false; } }
I think it should be ammended for everyone in the library.
Best regards