We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d90ca24 + 8e2dc27 commit c447875Copy full SHA for c447875
packages/grpc-js/src/http_proxy.ts
@@ -80,7 +80,7 @@ function getProxyInfo(): ProxyInfo {
80
if (proxyUrl.username) {
81
if (proxyUrl.password) {
82
log(LogVerbosity.INFO, 'userinfo found in proxy URI');
83
- userCred = `${proxyUrl.username}:${proxyUrl.password}`;
+ userCred = decodeURIComponent(`${proxyUrl.username}:${proxyUrl.password}`);
84
} else {
85
userCred = proxyUrl.username;
86
}
0 commit comments