Ver a proveniência

Adds extra check just in case

main
Eric Amodio há 1 ano
ascendente
cometimento
9933c974a4
1 ficheiros alterados com 4 adições e 1 eliminações
  1. +4
    -1
      src/uris/deepLinks/deepLinkService.ts

+ 4
- 1
src/uris/deepLinks/deepLinkService.ts Ver ficheiro

@ -209,7 +209,10 @@ export class DeepLinkService implements Disposable {
}
const tag = await this.getShaForTag(ref);
return tag != null;
if (tag != null) return true;
const sha = await this.getShaForCommit(ref);
return sha != null;
}
private async getShasForTargets(): Promise<string | string[] | undefined> {

Carregando…
Cancelar
Guardar