From b9763044eef53268051346c7bf7e94d4490071bd Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 9 Jul 2021 10:31:12 +0200 Subject: [PATCH] close streamProcessor in telnet tabs --- tabby-telnet/src/session.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tabby-telnet/src/session.ts b/tabby-telnet/src/session.ts index 30e5bca1..99b68c25 100644 --- a/tabby-telnet/src/session.ts +++ b/tabby-telnet/src/session.ts @@ -80,6 +80,7 @@ export class TelnetSession extends BaseSession { } async destroy (): Promise { + this.streamProcessor.close() this.serviceMessage.complete() this.kill() await super.destroy()