Skip to content

Commit adc8e4e

Browse files
authored
🐞 fix(extension.ts): not compatible with vscode v1.74.0. (#80)
1 parent e97ec48 commit adc8e4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export function activate(context: vscode.ExtensionContext) {
231231
if (uri) {
232232
//如果有多个repo 寻找当前的 进行填充 If there are multiple repos looking for the current to populate
233233
repo = gitExtension.getAPI(1).repositories.find(repo => {
234-
return repo.rootUri.path === uri._rootUri.path;
234+
return repo.rootUri.path === uri.rootUri.path;
235235
});
236236
}
237237
startMessageInput();

0 commit comments

Comments
 (0)