diff --git a/src/git/parsers/logParser.ts b/src/git/parsers/logParser.ts index 16d468a..8ff1ae8 100644 --- a/src/git/parsers/logParser.ts +++ b/src/git/parsers/logParser.ts @@ -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; }