mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
fix: original FullMessage
missing line-endings (#790)
This commit is contained in:
parent
c4c7bef93c
commit
59f11e9aca
1 changed files with 7 additions and 1 deletions
|
@ -53,9 +53,15 @@ namespace SourceGit.Commands
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if (line.Equals(_boundary, StringComparison.Ordinal))
|
if (line.Equals(_boundary, StringComparison.Ordinal))
|
||||||
|
{
|
||||||
nextPartIdx = -1;
|
nextPartIdx = -1;
|
||||||
|
_current.Message = _current.Message.Trim();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
_current.Message += line;
|
{
|
||||||
|
_current.Message = _current.Message + "\n" + line;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue