Fix old hashes not working with the new parser

pull/1/head
yflory 2017-05-18 10:13:08 +02:00
parent 6ad0fdff79
commit b72415b56b
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ Version 1
// new hash system : #/{hashVersion}/{b64ChanKey}/{cryptKey}
if (parsed.version === 0) {
// Old hash
secret.channel = hash.slice(0, 32);
secret.key = hash.slice(32);
secret.channel = parsed.channel;
secret.key = parsed.key;
}
else if (parsed.version === 1) {
// New hash