1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-16 00:19:54 +00:00

Fix serial Hexadecimal write ()

This commit is contained in:
Osman Karaketir 2023-03-05 23:46:36 +03:00 committed by GitHub
parent 1e5cfd1d4b
commit c8b5501a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -132,7 +132,7 @@ export class SerialSession extends BaseSession {
} }
write (data: Buffer): void { write (data: Buffer): void {
this.serial?.write(data.toString()) this.serial?.write(data)
} }
async destroy (): Promise<void> { async destroy (): Promise<void> {