Skip to content

Commit

Permalink
Fix error when displaying project config with empty section(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpaquay committed Feb 10, 2020
1 parent 8d77bcc commit 8854e6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private static ProjectConfigurationSectionDetails CreateSectionDetails(IConfigur
return new ProjectConfigurationSectionDetails {
ContainingFilePath = section.ContainingFilePath.Value,
Name = section.Name,
Contents = section.Contents.Aggregate((acc, s1) => acc + "\r\n" + s1)
Contents = section.Contents.Aggregate("", (acc, s1) => acc + "\r\n" + s1)
};
}
}
Expand Down

0 comments on commit 8854e6b

Please sign in to comment.