Skip to content

Commit 4713b13

Browse files
committed
Register ptyservice in localptyservice
1 parent dc4fa48 commit 4713b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/terminal/electron-browser/localPtyService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class LocalPtyService extends Disposable implements IPtyService {
9797
// }));
9898

9999
// Create proxy and forward events
100-
const proxy = new PtyService(this._logService);
100+
const proxy = this._register(new PtyService(this._logService));
101101
// const proxy = ProxyChannel.toService<IPtyService>(client.getChannel(TerminalIpcChannels.PtyHost));
102102
this._register(proxy.onProcessData(e => this._onProcessData.fire(e)));
103103
this._register(proxy.onProcessExit(e => this._onProcessExit.fire(e)));

0 commit comments

Comments
 (0)