Skip to content

Commit 169caa7

Browse files
committed
fixing a few issues in httpx
1 parent f30e62c commit 169caa7

2 files changed

Lines changed: 63 additions & 63 deletions

File tree

Payload_Type/apollo/apollo/agent_code/HttpxTransform/Transforms.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static byte[] Base64Decode(byte[] data)
3939
public static byte[] Base64UrlEncode(byte[] data)
4040
{
4141
string base64 = Convert.ToBase64String(data);
42-
base64 = base64.Replace('+', '-').Replace('/', '_').TrimEnd('=');
42+
base64 = base64.Replace('+', '-').Replace('/', '_');//.TrimEnd('=');
4343
return Encoding.UTF8.GetBytes(base64);
4444
}
4545

0 commit comments

Comments
 (0)