Parcourir la source

Changes truncated to only be if more than 1

main
Eric Amodio il y a 7 ans
Parent
révision
82a5a93fae
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/parsers/logParser.ts

+ 1
- 1
src/git/parsers/logParser.ts Voir le fichier

@ -214,7 +214,7 @@ export class GitLogParser {
count: i,
maxCount: maxCount,
range: range,
truncated: !!(maxCount && i >= maxCount)
truncated: !!(maxCount && i >= maxCount && maxCount !== 1)
} as GitLog;
}

Chargement…
Annuler
Enregistrer