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.
1 parent a4c2106 commit 8e2dc27Copy full SHA for 8e2dc27
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