Merge branch 'main' into joh/vscode-dts

This commit is contained in:
Johannes Rieken
2021-11-10 17:57:11 +01:00
12 changed files with 159 additions and 19 deletions

View File

@@ -153,7 +153,9 @@ export class MainThreadTunnelService extends Disposable implements MainThreadTun
return (await this.tunnelService.tunnels).map(tunnel => {
return {
remoteAddress: { port: tunnel.tunnelRemotePort, host: tunnel.tunnelRemoteHost },
localAddress: tunnel.localAddress
localAddress: tunnel.localAddress,
privacy: tunnel.privacy,
protocol: tunnel.protocol
};
});
}