fix: don't strip u
This commit is contained in:
parent
968459d1c0
commit
b3174cacf7
|
@ -19,7 +19,7 @@ export default abstract class Multibase {
|
||||||
}
|
}
|
||||||
bytes = base32.decode(str);
|
bytes = base32.decode(str);
|
||||||
} else if (data[0] === "u") {
|
} else if (data[0] === "u") {
|
||||||
let str = data.substring(1);
|
let str = data;
|
||||||
while (str.length % 4 !== 0) {
|
while (str.length % 4 !== 0) {
|
||||||
str += "=";
|
str += "=";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue