Skip to content

Commit 5c58cb7

Browse files
committed
lint
1 parent 879bee9 commit 5c58cb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/makeProxyAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function selectProxyAgent(proxyUrl: string): HttpsProxyAgent<string> | SocksProx
2828
case PROXY_SOCKS5_PROTOCOL: {
2929
let urlSocks = '';
3030

31-
if(url.username && url.password) {
31+
if (url.username && url.password) {
3232
urlSocks = `socks://${url.username}:${url.password}@${url.hostname}:${url.port}`;
3333
} else {
3434
urlSocks = `socks://${url.hostname}:${url.port}`;

0 commit comments

Comments
 (0)