Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit e33aa40

Browse files
committed
Fix xwebrtc reference
1 parent d220882 commit e33aa40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cmd/tunnel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (c *tunnneler) start(ctx context.Context) error {
126126
if err != nil {
127127
return xerrors.Errorf("creating workspace dialer: %w", wd)
128128
}
129-
nc, err := wd.DialContext(ctx, xwebrtc.NetworkTCP, fmt.Sprintf("localhost:%d", c.remotePort))
129+
nc, err := wd.DialContext(ctx, "tcp", fmt.Sprintf("localhost:%d", c.remotePort))
130130
if err != nil {
131131
return xerrors.Errorf("dial: %w", err)
132132
}

0 commit comments

Comments
 (0)