Ver a proveniência

Fixes matching repo in path mapping for deep link when already open

main
Ramin Tadayon há 1 ano
ascendente
cometimento
cc3b2ff7d6
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 79D60DDE3DFB95F5
1 ficheiros alterados com 16 adições e 2 eliminações
  1. +16
    -2
      src/uris/deepLinks/deepLinkService.ts

+ 16
- 2
src/uris/deepLinks/deepLinkService.ts Ver ficheiro

@ -478,8 +478,22 @@ export class DeepLinkService implements Disposable {
remoteUrl: remoteUrl,
});
if (matchingLocalRepoPaths.length > 0) {
action = DeepLinkServiceAction.RepoMatchedInLocalMapping;
break;
for (const repo of this.container.git.repositories) {
if (
matchingLocalRepoPaths.some(
p => normalizePath(repo.path.toLowerCase()) === normalizePath(p.toLowerCase()),
)
) {
this._context.repo = repo;
action = DeepLinkServiceAction.RepoMatched;
break;
}
}
if (this._context.repo == null) {
action = DeepLinkServiceAction.RepoMatchedInLocalMapping;
break;
}
}
}

Carregando…
Cancelar
Guardar