Fix "undefined" prefix from md5Async()
This commit is contained in:
parent
0a5e31a4e1
commit
e206d70595
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ Zotero.Utilities.Internal = {
|
||||||
}
|
}
|
||||||
// Hex string
|
// Hex string
|
||||||
else {
|
else {
|
||||||
let hexStr;
|
let 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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue