We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8d5dea commit 8b3c402Copy full SHA for 8b3c402
src/vs/workbench/contrib/inlineChat/browser/inlineChatController.ts
@@ -518,6 +518,7 @@ export class InlineChatController implements IEditorContribution {
518
this._zone.value.widget.updateInfo(!this._activeSession.lastExchange ? localize('thinking', "Thinking\u2026") : '');
519
this._ctxHasActiveRequest.set(true);
520
reply = await raceCancellationError(Promise.resolve(task), requestCts.token);
521
+
522
if (reply?.type === 'message') {
523
response = new MarkdownResponse(this._activeSession.textModelN.uri, reply);
524
} else if (reply) {
0 commit comments