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 879bee9 commit 5c58cb7Copy full SHA for 5c58cb7
src/utils/makeProxyAgent.ts
@@ -28,7 +28,7 @@ function selectProxyAgent(proxyUrl: string): HttpsProxyAgent<string> | SocksProx
28
case PROXY_SOCKS5_PROTOCOL: {
29
let urlSocks = '';
30
31
- if(url.username && url.password) {
+ if (url.username && url.password) {
32
urlSocks = `socks://${url.username}:${url.password}@${url.hostname}:${url.port}`;
33
} else {
34
urlSocks = `socks://${url.hostname}:${url.port}`;
0 commit comments