Skip to content

Commit

Permalink
fix: Fix typo in proxy-authorization header for basic authentication.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed Dec 19, 2024
1 parent 897905b commit 230b242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/server-node/src/platform/NodeRequests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function processProxyOptions(
};
if (proxyOptions.auth) {
parsedOptions.headers = {
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}}`,
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}`,
};
}

Expand Down

0 comments on commit 230b242

Please sign in to comment.