mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-06 14:10:53 +03:00
fix functionality on firefox 50 and 51
This commit is contained in:
@@ -80,7 +80,7 @@ $(document).ready(function() {
|
|||||||
if (files.length === 0) {
|
if (files.length === 0) {
|
||||||
toggleHeader();
|
toggleHeader();
|
||||||
} else {
|
} else {
|
||||||
for (const index in files) {
|
for (let index in files) {
|
||||||
const id = files[index].fileId;
|
const id = files[index].fileId;
|
||||||
//check if file still exists before adding to list
|
//check if file still exists before adding to list
|
||||||
checkExistence(id, files[index], true);
|
checkExistence(id, files[index], true);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
function arrayToHex(iv) {
|
function arrayToHex(iv) {
|
||||||
let hexStr = '';
|
let hexStr = '';
|
||||||
for (const i in iv) {
|
for (let i in iv) {
|
||||||
if (iv[i] < 16) {
|
if (iv[i] < 16) {
|
||||||
hexStr += '0' + iv[i].toString(16);
|
hexStr += '0' + iv[i].toString(16);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user