fix: base64urlpad requires a "U" prefix

This commit is contained in:
Derrick Hammer 2023-11-18 08:02:11 -05:00
parent d379801e4d
commit e760149699
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default abstract class Multibase {
}
bytes = base32.decode(str);
} else if (data[0] === "u") {
let str = data;
let str = data[0].toUpperCase() + data.substring(1);
while (str.length % 4 !== 0) {
str += "=";
}