File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const getServerArgs = () => {
2121 args . push ( "--relay-network-whitelist" ) ;
2222 }
2323 if ( mainStore . serverConfig . privateMode ) {
24- args . push ( "--private-mode" ) ;
24+ args . push ( "--private-mode" , "true" ) ;
2525 }
2626 return args ;
2727} ;
Original file line number Diff line number Diff line change 14121412 args .push (" --proxy-forward-by-system" );
14131413 }
14141414 if (mainStore .config .acceptDNS ) {
1415- args .push (" --accept-dns" );
1415+ args .push (" --accept-dns" , " true " );
14161416 }
14171417 if (mainStore .config .enablePortForward ) {
14181418 let formatPortForward = mainStore .config .portForwardData .trim ().split (" \n " );
14241424 }
14251425 }
14261426 if (mainStore .config .privateMode ) {
1427- args .push (" --private-mode" );
1427+ args .push (" --private-mode" , " true " );
14281428 }
14291429 return args ;
14301430 };
You can’t perform that action at this time.
0 commit comments