Fix file sync error due to Zotero.Utilities.Internal.md5() brokenness

Broken in 7d404e8d4a
This commit is contained in:
Dan Stillman 2016-01-14 19:25:15 -05:00
parent 7d404e8d4a
commit da71d6201a

View file

@ -96,7 +96,7 @@ Zotero.Utilities.Internal = {
} }
// convert the binary hash data to a hex string. // convert the binary hash data to a hex string.
var hexStr; var hexStr = "";
for (let i = 0; i < hash.length; i++) { for (let i = 0; i < hash.length; i++) {
hexStr += toHexString(hash.charCodeAt(i)); hexStr += toHexString(hash.charCodeAt(i));
} }