We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24249db commit 5eeca24Copy full SHA for 5eeca24
src/extension/chatSessions/vscode-node/folderRepositoryManagerImpl.ts
@@ -442,7 +442,7 @@ export abstract class FolderRepositoryManager extends Disposable implements IFol
442
branch: string | undefined,
443
token: vscode.CancellationToken
444
): Promise<{ repository: vscode.Uri; modifiedFiles: Array<{ uri: vscode.Uri; originalUri?: vscode.Uri; insertions?: number; deletions?: number }> } | undefined> {
445
- const repository = await this.gitService.getRepository(folderPath, false);
+ const repository = await this.gitService.getRepository(folderPath);
446
if (!repository) {
447
return undefined;
448
}
0 commit comments