mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-20 15:19:54 +01:00
Fix progress task with empty message (#224995)
This commit is contained in:
@@ -93,7 +93,7 @@ class ChatAgentResponseStream {
|
||||
};
|
||||
|
||||
Promise.all([progressReporterPromise, task?.(progressReporter)]).then(([handle, res]) => {
|
||||
if (handle !== undefined && res !== undefined) {
|
||||
if (handle !== undefined) {
|
||||
this._proxy.$handleProgressChunk(this._request.requestId, typeConvert.ChatTaskResult.from(res), handle);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user