Skip to content

Commit

Permalink
Hide chat view when default participant goes away (#224039)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens authored Jul 27, 2024
1 parent 12fecf5 commit 5b5e760
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export class ChatExtensionPointHandler implements IWorkbenchContribution {

for (const extension of delta.removed) {
for (const providerDescriptor of extension.value) {
this._participantRegistrationDisposables.deleteAndDispose(getParticipantKey(extension.description.identifier, providerDescriptor.name));
this._participantRegistrationDisposables.deleteAndDispose(getParticipantKey(extension.description.identifier, providerDescriptor.id));
}
}
});
Expand Down

0 comments on commit 5b5e760

Please sign in to comment.