Parcourir la source

Changes getCommit to return 1st commit

main
Eric Amodio il y a 5 ans
Parent
révision
508f597972
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/gitService.ts

+ 1
- 1
src/git/gitService.ts Voir le fichier

@ -1126,7 +1126,7 @@ export class GitService implements Disposable {
const log = await this.getLog(repoPath, { maxCount: 2, ref: ref });
if (log === undefined) return undefined;
return log.commits.get(ref);
return log.commits.get(ref) || Iterables.first(log.commits.values());
}
@log()

Chargement…
Annuler
Enregistrer