mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
fix: show a empty commit with sha in submodule diff view if commit has been dropped
This commit is contained in:
parent
1870dcd468
commit
78000b6d1a
1 changed files with 2 additions and 2 deletions
|
@ -131,12 +131,12 @@ namespace SourceGit.ViewModels
|
||||||
if (line.Type == Models.TextDiffLineType.Added)
|
if (line.Type == Models.TextDiffLineType.Added)
|
||||||
{
|
{
|
||||||
var sha = line.Content.Substring("Subproject commit ".Length);
|
var sha = line.Content.Substring("Subproject commit ".Length);
|
||||||
submoduleDiff.New = new Commands.QuerySingleCommit(submoduleRoot, sha).Result();
|
submoduleDiff.New = new Commands.QuerySingleCommit(submoduleRoot, sha).Result() ?? new Models.Commit() { SHA = sha };
|
||||||
}
|
}
|
||||||
else if (line.Type == Models.TextDiffLineType.Deleted)
|
else if (line.Type == Models.TextDiffLineType.Deleted)
|
||||||
{
|
{
|
||||||
var sha = line.Content.Substring("Subproject commit ".Length);
|
var sha = line.Content.Substring("Subproject commit ".Length);
|
||||||
submoduleDiff.Old = new Commands.QuerySingleCommit(submoduleRoot, sha).Result();
|
submoduleDiff.Old = new Commands.QuerySingleCommit(submoduleRoot, sha).Result() ?? new Models.Commit() { SHA = sha };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rs = submoduleDiff;
|
rs = submoduleDiff;
|
||||||
|
|
Loading…
Reference in a new issue