Don't transform incoming data

This would run for all data
This commit is contained in:
Daniel Imms
2019-09-12 11:24:04 -07:00
parent 293f54e8dd
commit fc4f345446
+1 -1
View File
@@ -329,7 +329,7 @@ export class InputHandler extends Disposable implements IInputHandler {
const cursorStartX = buffer.x;
const cursorStartY = buffer.y;
this._logService.debug(`parsing data "${data}"`, data.split('').map(e => e.charCodeAt(0)));
this._logService.debug('parsing data', data);
if (this._parseBuffer.length < data.length) {
this._parseBuffer = new Uint32Array(data.length);