1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-24 12:13:16 +00:00

Fixed bug, where _write didn't return a value. This is important, because of bugfix with Polyfill for stream, which accidentally ignored this return value

This commit is contained in:
Bryan Roe
2019-01-30 21:30:08 -08:00
parent cef67a1c8e
commit 60df8bbd56

View File

@@ -193,6 +193,7 @@ function windows_terminal() {
this.terminal._WriteBuffer(chunk);
flush();
}
return (true);
},
'final': function (flush) {
var p = this.terminal._stop();