mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
fix: missing subject for the last commit (oldest in commit graph)
This commit is contained in:
parent
ac1eacaa87
commit
8bcce5f723
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,9 @@ namespace SourceGit.Commands
|
||||||
end = rs.StdOut.IndexOf('\n', start);
|
end = rs.StdOut.IndexOf('\n', start);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (start < rs.StdOut.Length)
|
||||||
|
_current.Subject = rs.StdOut.Substring(start);
|
||||||
|
|
||||||
if (_findFirstMerged && !_isHeadFounded && _commits.Count > 0)
|
if (_findFirstMerged && !_isHeadFounded && _commits.Count > 0)
|
||||||
MarkFirstMerged();
|
MarkFirstMerged();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue