Commit 71e418fa authored by JC Brand's avatar JC Brand

Bugfix. Not stored as base64

parent d784e4a7
......@@ -22,7 +22,7 @@
'registrationId': '1337'
});
this.decryptWhisperMessage = (key_and_tag) => {
return Promise.resolve(u.stringToArrayBuffer(atob(key_and_tag)));
return Promise.resolve(u.stringToArrayBuffer(key_and_tag));
}
},
'SessionBuilder': function (storage, remote_address) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment