mirror of
https://github.com/timvisee/send.git
synced 2026-04-17 21:44:13 -04:00
fix functionality on firefox 50 and 51
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
function arrayToHex(iv) {
|
||||
let hexStr = '';
|
||||
for (const i in iv) {
|
||||
for (let i in iv) {
|
||||
if (iv[i] < 16) {
|
||||
hexStr += '0' + iv[i].toString(16);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user