diff --git a/customize.dist/credential.js b/customize.dist/credential.js index 8635bf6c4..d1d88bd97 100644 --- a/customize.dist/credential.js +++ b/customize.dist/credential.js @@ -61,7 +61,13 @@ define([ } // grab an unused slice of the entropy - var A = bytes.slice(entropy.used, entropy.used + n); + // Note: Internet Explorer doesn't support .slice on Uint8Array + var A; + if (bytes.slice) { + A = bytes.slice(entropy.used, entropy.used + n); + } else { + A = bytes.subarray(entropy.used, entropy.used + n); + } // account for the bytes you used so you don't reuse bytes entropy.used += n; diff --git a/customize.dist/login.js b/customize.dist/login.js index 25fcc8dcf..21668140f 100644 --- a/customize.dist/login.js +++ b/customize.dist/login.js @@ -113,7 +113,8 @@ define([ }; var isProxyEmpty = function (proxy) { - return Object.keys(proxy).length === 0; + var l = Object.keys(proxy).length; + return l === 0 || (l === 2 && proxy._events && proxy.on); }; var setMergeAnonDrive = function () { diff --git a/www/common/translations/messages.es.json b/www/common/translations/messages.es.json index c7c5b9a4d..2f352295a 100644 --- a/www/common/translations/messages.es.json +++ b/www/common/translations/messages.es.json @@ -8,7 +8,9 @@ "whiteboard": "Pizarra", "contacts": "Contactos", "kanban": "Kanban", - "drive": "CryptDrive" + "drive": "CryptDrive", + "todo": "Lista de tareas", + "file": "Archivo" }, "disconnected": "Desconectado", "synchronizing": "Sincronización",