Remove debug

This commit is contained in:
Jiiks 2018-08-13 12:35:19 +03:00
parent 5592a8d376
commit cfcca0d782
1 changed files with 0 additions and 1 deletions

View File

@ -20,7 +20,6 @@ export default class Security {
static decrypt(key, content, prefix = '') {
if (key instanceof Array || content instanceof Array) {
console.log('deep decrypting');
return this.deepDecrypt(key, content, prefix);
}
return aes256.decrypt(key, content.replace(prefix, ''));