fixed zmodem encoding (fixes #2352)

This commit is contained in:
Eugene Pankov 2020-04-20 10:55:38 +02:00
parent f69942a3a3
commit f8645df60c

View File

@ -302,7 +302,7 @@ export class SSHSession extends BaseSession {
write (data: Buffer): void {
if (this.shell) {
this.shell.write(data.toString())
this.shell.write(data)
}
}