We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95bbc97 commit 3ccac1eCopy full SHA for 3ccac1e
PegasusExportPlugin/frmPegasusExport.cs
@@ -195,7 +195,16 @@ await Task.Run(() =>
195
196
if (!string.IsNullOrWhiteSpace(game.Notes))
197
{
198
- gameMetadataBuilder.AppendLine($"description: {game.Notes}");
+ var description = game.Notes.Split(new string[]{ @"\r\n",@"\n" }, StringSplitOptions.None);
199
+ gameMetadataBuilder.AppendLine($"description: {description[0]}");
200
+
201
+ if (description.Length > 1)
202
+ {
203
+ for (int i = 1; i < description.Length; i++)
204
205
+ gameMetadataBuilder.AppendLine($" {(string.IsNullOrWhiteSpace(description[i]) ? "." : description[i])}");
206
+ }
207
208
}
209
210
if (game.ReleaseDate != null)
0 commit comments