don't parse trailing slash as part of encryption key in old hashes
This commit is contained in:
@@ -55,7 +55,7 @@ Version 1
|
|||||||
if (hash.slice(0,1) !== '/' && hash.length >= 56) {
|
if (hash.slice(0,1) !== '/' && hash.length >= 56) {
|
||||||
// Old hash
|
// Old hash
|
||||||
parsed.channel = hash.slice(0, 32);
|
parsed.channel = hash.slice(0, 32);
|
||||||
parsed.key = hash.slice(32);
|
parsed.key = hash.slice(32, 56);
|
||||||
parsed.version = 0;
|
parsed.version = 0;
|
||||||
return parsed;
|
return parsed;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user