From e595d52c3b1313bd130c75fb64296edc6612f918 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 10 Nov 2023 18:14:59 -0600 Subject: [PATCH] Fix slash commands / followups mixup --- src/vs/workbench/api/browser/mainThreadChatAgents2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/browser/mainThreadChatAgents2.ts b/src/vs/workbench/api/browser/mainThreadChatAgents2.ts index 07a10a92e9cc1..ddbd8dd2b07e1 100644 --- a/src/vs/workbench/api/browser/mainThreadChatAgents2.ts +++ b/src/vs/workbench/api/browser/mainThreadChatAgents2.ts @@ -75,7 +75,7 @@ export class MainThreadChatAgents2 extends Disposable implements MainThreadChatA } }, provideFollowups: async (sessionId, token): Promise => { - if (!this._agents.get(handle)?.hasSlashCommands) { + if (!this._agents.get(handle)?.hasFollowups) { return []; }