Skip to content

Commit

Permalink
Fix incorrect event
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Nov 11, 2021
1 parent 183e692 commit bd25c29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class WorkerMainProcessExtensionHostStarter implements IDisposable, IExte
}

onDynamicStdout(id: string): Event<string> {
return this._proxy!.onDynamicStderr(id);
return this._proxy!.onDynamicStdout(id);
}

onDynamicStderr(id: string): Event<string> {
Expand Down

0 comments on commit bd25c29

Please sign in to comment.