Skip to content

Commit

Permalink
Keep original message when inserting reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed Sep 17, 2017
1 parent d377b21 commit 70a80a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/TurtleHub.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.40629.0
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TurtleHub", "TurtleHub\TurtleHub.csproj", "{CFF6CAA1-27A0-46FF-89D6-AD70F3575685}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion src/TurtleHub/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public string GetCommitMessage2(IntPtr hParentWnd, string parameters, string com
if (form.ShowDialog(WindowHandleWrapper.TryCreate(hParentWnd)) != DialogResult.OK)
return originalMessage;

return parms.CreateReferenceMessage(form.IssuesFixed.Select(issue => issue.Number).ToList());
return originalMessage + parms.CreateReferenceMessage(form.IssuesFixed.Select(issue => issue.Number).ToList());
}
catch (Exception ex)
{
Expand Down

0 comments on commit 70a80a5

Please sign in to comment.