Skip to content

Commit 409da04

Browse files
authored
Fix chat agent activation event (microsoft#208362)
1 parent 93b7e32 commit 409da04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatContributionServiceImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const chatParticipantExtensionPoint = extensionsRegistry.ExtensionsRegistry.regi
152152
},
153153
activationEventsGenerator: (contributions: IRawChatParticipantContribution[], result: { push(item: string): void }) => {
154154
for (const contrib of contributions) {
155-
result.push(`onChatParticipant:${contrib.name}`);
155+
result.push(`onChatParticipant:${contrib.id}`);
156156
}
157157
},
158158
});

0 commit comments

Comments
 (0)