fix: Decode Faaaaaast

This commit is contained in:
Kalle Carlbark 2024-11-19 22:17:56 +01:00
parent a85a352c66
commit 548c9ee1d9
No known key found for this signature in database

View file

@ -153,7 +153,7 @@ fn decode(allocator: std.mem.Allocator, b64string: []const u8) ![]u8 {
defer allocator.free(decoded);
decoder.decode(decoded, b64string) catch |err| {
decoder.decodeFast(decoded, b64string) catch |err| {
return err;
};