File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
arduino-ide-extension/src/browser/dialogs/settings Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ export class SettingsComponent extends React.Component<
406406 }
407407 onChange = { this . socksProtocolDidChange }
408408 />
409- SOCKS
409+ SOCKS5
410410 </ label >
411411 </ form >
412412 < div className = "flex-line proxy-settings" >
@@ -682,7 +682,7 @@ export class SettingsComponent extends React.Component<
682682 ) : void => {
683683 if ( this . state . network !== 'none' ) {
684684 const network = this . cloneProxySettings ;
685- network . protocol = event . target . checked ? 'http' : 'socks ' ;
685+ network . protocol = event . target . checked ? 'http' : 'socks5 ' ;
686686 this . setState ( { network } ) ;
687687 }
688688 } ;
@@ -692,7 +692,7 @@ export class SettingsComponent extends React.Component<
692692 ) : void => {
693693 if ( this . state . network !== 'none' ) {
694694 const network = this . cloneProxySettings ;
695- network . protocol = event . target . checked ? 'socks ' : 'http' ;
695+ network . protocol = event . target . checked ? 'socks5 ' : 'http' ;
696696 this . setState ( { network } ) ;
697697 }
698698 } ;
You can’t perform that action at this time.
0 commit comments