mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
Add change to veilid_encoding.dart to fix base64
This commit is contained in:
parent
f59c4509ea
commit
4bd5e9a46f
@ -13,7 +13,9 @@ String base64UrlNoPadEncode(List<int> bytes) {
|
||||
}
|
||||
|
||||
Uint8List base64UrlNoPadDecode(String source) {
|
||||
source = base64.normalize(source);
|
||||
if(source.length % 4 != 0) {
|
||||
source = base64.normalize(source);
|
||||
}
|
||||
return base64.decode(source);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user