www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit da71d6201a3f2f4245065124b1a025636c62a2e8
parent 7d404e8d4ad636987acfe33d0b8620263004d6d0
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 14 Jan 2016 19:25:15 -0500

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

Broken in 7d404e8d4a

Diffstat:
Mchrome/content/zotero/xpcom/utilities_internal.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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