From c8b5501a5fd846e70c98c47acc37945cfef18478 Mon Sep 17 00:00:00 2001 From: Osman Karaketir Date: Sun, 5 Mar 2023 23:46:36 +0300 Subject: [PATCH] Fix serial Hexadecimal write (#8035) --- tabby-serial/src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-serial/src/api.ts b/tabby-serial/src/api.ts index b1778659..2e2f35a3 100644 --- a/tabby-serial/src/api.ts +++ b/tabby-serial/src/api.ts @@ -132,7 +132,7 @@ export class SerialSession extends BaseSession { } write (data: Buffer): void { - this.serial?.write(data.toString()) + this.serial?.write(data) } async destroy (): Promise {