Browse Source

Changes truncated to only be if more than 1

main
Eric Amodio 7 years ago
parent
commit
82a5a93fae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/git/parsers/logParser.ts

+ 1
- 1
src/git/parsers/logParser.ts View File

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

Loading…
Cancel
Save