From 6ef6558c1992e52b1c135f6d58c24239dc96f8d1 Mon Sep 17 00:00:00 2001 From: Brian Lambert Date: Fri, 21 Feb 2025 18:14:26 -0700 Subject: [PATCH] Fix problem which prematurely terminated ActivityItemStreams --- .../positronConsole/browser/classes/activityItemStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/positronConsole/browser/classes/activityItemStream.ts b/src/vs/workbench/services/positronConsole/browser/classes/activityItemStream.ts index 31ed91fc011..72a48e54cfd 100644 --- a/src/vs/workbench/services/positronConsole/browser/classes/activityItemStream.ts +++ b/src/vs/workbench/services/positronConsole/browser/classes/activityItemStream.ts @@ -110,7 +110,7 @@ export class ActivityItemStream { this.processActivityItemStreams(); // Update the terminated flag. - this.terminated = this.ansiOutput.isBuffering; + this.terminated = !this.ansiOutput.isBuffering; // If there is no remainder text, return undefined, indicating that there is no remainder // ActivityItemStream to be processed.