mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
Fix serial Hexadecimal write (#8035)
This commit is contained in:
parent
1e5cfd1d4b
commit
c8b5501a5f
1 changed files with 1 additions and 1 deletions
|
@ -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<void> {
|
||||
|
|
Loading…
Reference in a new issue