Add change to veilid_encoding.dart to fix base64

This commit is contained in:
Kyle H 2023-10-07 14:27:10 +00:00 committed by Christien Rioux
parent f59c4509ea
commit 4bd5e9a46f

View File

@ -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);
}