@ -43,10 +43,20 @@ define([
var c = Crypto.createEncryptor(key);
cryptor.encrypt = function (href) {
// Never encrypt blob href, they are always read-only
try {
if (href.slice(0,7) === '/file/#') { return href; }
return c.encrypt(href);
} catch (e) {
return;
}
};
cryptor.decrypt = function (msg) {
return c.decrypt(msg);
cryptor.decrypt = c.decrypt;
console.error(e);