Skip to content

Commit b44c9f2

Browse files
committed
Missing updates
1 parent a369d13 commit b44c9f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatActions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ export function registerChatActions() {
565565
const cancellationToken = new CancellationTokenSource();
566566

567567
try {
568-
const sessions = await chatSessionsService.provideChatSessionDefinitions(cancellationToken.token);
568+
const sessions = await chatSessionsService.provideChatSessionItems(cancellationToken.token);
569569

570570
for (const session of sessions) {
571571
const sessionContent = session.session;
@@ -845,7 +845,7 @@ export function registerChatActions() {
845845
}
846846

847847
const showAgentSessionsMenuConfig = configurationService.getValue<string>(ChatConfiguration.AgentSessionsViewLocation);
848-
if (showAgentSessionsMenuConfig === 'showChatsMenu' && chatSessionsService.hasChatSessionDefinitionProviders) {
848+
if (showAgentSessionsMenuConfig === 'showChatsMenu' && chatSessionsService.hasChatSessionItemProviders) {
849849
await this.showIntegratedPicker(
850850
chatService,
851851
quickInputService,

0 commit comments

Comments
 (0)