Merge branch 'master' of github.com:Eugeny/tabby

This commit is contained in:
Eugene Pankov
2023-03-07 19:00:09 +01:00
12 changed files with 20 additions and 1 deletions

View File

@@ -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> {