Skip to content

Commit

Permalink
Merge pull request #224741 from microsoft/tyriar/221405
Browse files Browse the repository at this point in the history
Remove comma from shellIntegration data stream
  • Loading branch information
Tyriar authored Aug 4, 2024
2 parents 1ac4add + 3a33b50 commit 39d9860
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class MainThreadTerminalShellIntegration extends Disposable implements Ma
// TerminalShellExecution.createDataStream
// Debounce events to reduce the message count - when this listener is disposed the events will be flushed
instanceDataListeners.get(instanceId)?.dispose();
instanceDataListeners.set(instanceId, Event.accumulate(e.instance.onData, 50, this._store)(events => this._proxy.$shellExecutionData(instanceId, events.join())));
instanceDataListeners.set(instanceId, Event.accumulate(e.instance.onData, 50, this._store)(events => this._proxy.$shellExecutionData(instanceId, events.join(''))));
}));

// onDidEndTerminalShellExecution
Expand Down

0 comments on commit 39d9860

Please sign in to comment.