Skip to content

Commit

Permalink
fix parse
Browse files Browse the repository at this point in the history
  • Loading branch information
spektor56 committed Jun 23, 2019
1 parent 3ccac1e commit 5173094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PegasusExportPlugin/frmPegasusExport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ await Task.Run(() =>

if (!string.IsNullOrWhiteSpace(game.Notes))
{
var description = game.Notes.Split(new string[]{ @"\r\n",@"\n" }, StringSplitOptions.None);
var description = game.Notes.Split(new string[]{ "\r\n","\n" }, StringSplitOptions.None);
gameMetadataBuilder.AppendLine($"description: {description[0]}");

if (description.Length > 1)
Expand Down

0 comments on commit 5173094

Please sign in to comment.