File tree 1 file changed +3
-3
lines changed
arduino-ide-extension/src/browser/dialogs/settings
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<
406
406
}
407
407
onChange = { this . socksProtocolDidChange }
408
408
/>
409
- SOCKS
409
+ SOCKS5
410
410
</ label >
411
411
</ form >
412
412
< div className = "flex-line proxy-settings" >
@@ -682,7 +682,7 @@ export class SettingsComponent extends React.Component<
682
682
) : void => {
683
683
if ( this . state . network !== 'none' ) {
684
684
const network = this . cloneProxySettings ;
685
- network . protocol = event . target . checked ? 'http' : 'socks ' ;
685
+ network . protocol = event . target . checked ? 'http' : 'socks5 ' ;
686
686
this . setState ( { network } ) ;
687
687
}
688
688
} ;
@@ -692,7 +692,7 @@ export class SettingsComponent extends React.Component<
692
692
) : void => {
693
693
if ( this . state . network !== 'none' ) {
694
694
const network = this . cloneProxySettings ;
695
- network . protocol = event . target . checked ? 'socks ' : 'http' ;
695
+ network . protocol = event . target . checked ? 'socks5 ' : 'http' ;
696
696
this . setState ( { network } ) ;
697
697
}
698
698
} ;
You can’t perform that action at this time.
0 commit comments