diff --git a/client/electron/go_vpn_tunnel.ts b/client/electron/go_vpn_tunnel.ts index 07627cde3d..5722e8f259 100755 --- a/client/electron/go_vpn_tunnel.ts +++ b/client/electron/go_vpn_tunnel.ts @@ -338,7 +338,7 @@ class GoTun2socks { */ async function checkConnectivity(tun2socks: GoTun2socks) { const output = await tun2socks.checkConnectivity(); - // Only parse the first line, because sometimes Windows Crypto API adds random logs to stdout. + // Only parse the first line, because sometimes Windows Crypto API adds warnings to stdout. const outObj = JSON.parse(output.split('\n')[0]); if ('tcpErrorJson' in outObj && outObj.tcpErrorJson) { throw new Error(outObj.tcpErrorJson);