Skip to content

Commit 220b6d6

Browse files
authored
fix: Fix typo in proxy-authorization header for basic authentication. (#720)
Fixes: #718
1 parent 0eeb3b6 commit 220b6d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sdk/server-node/src/platform/NodeRequests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function processProxyOptions(
5757
};
5858
if (proxyOptions.auth) {
5959
parsedOptions.headers = {
60-
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}}`,
60+
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}`,
6161
};
6262
}
6363

0 commit comments

Comments
 (0)