Skip to content

Commit 82a5a93

Browse files
committed
Changes truncated to only be if more than 1
1 parent 5a806dd commit 82a5a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/parsers/logParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export class GitLogParser {
214214
count: i,
215215
maxCount: maxCount,
216216
range: range,
217-
truncated: !!(maxCount && i >= maxCount)
217+
truncated: !!(maxCount && i >= maxCount && maxCount !== 1)
218218
} as GitLog;
219219
}
220220

0 commit comments

Comments
 (0)