File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,23 +116,23 @@ export class ProxyPerUserContextManager {
116
116
return ;
117
117
}
118
118
119
- if ( channelURI . schemeIs ( "http" ) && proxyInfo . httpProxy ) {
119
+ if ( proxyInfo . httpProxy ) {
120
120
this . #addProxyFilter( proxyFilter , {
121
121
host : proxyInfo . httpProxy ,
122
122
port : proxyInfo . httpProxyPort ,
123
123
type : "http" ,
124
124
} ) ;
125
125
}
126
126
127
- if ( channelURI . schemeIs ( "https" ) && proxyInfo . sslProxy ) {
127
+ if ( proxyInfo . sslProxy ) {
128
128
this . #addProxyFilter( proxyFilter , {
129
129
host : proxyInfo . sslProxy ,
130
130
port : proxyInfo . sslProxyPort ,
131
131
type : "https" ,
132
132
} ) ;
133
133
}
134
134
135
- if ( channelURI . schemeIs ( undefined ) && proxyInfo . socksProxy ) {
135
+ if ( proxyInfo . socksProxy ) {
136
136
this . #addProxyFilter( proxyFilter , {
137
137
host : proxyInfo . socksProxy ,
138
138
port : proxyInfo . socksProxyPort ,
You can’t perform that action at this time.
0 commit comments