Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
spektor56 committed Jan 24, 2020
1 parent 55bf875 commit 6a1c759
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LBGDBMetadata/LbgdbLazyMetadataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public override List<string> GetDevelopers()
{
if (!string.IsNullOrWhiteSpace(game.Developer))
{
return new List<string>() { game.Developer };
return game.Developer.Split(';').Select(developer => developer.Trim()).ToList();
}
}

Expand All @@ -180,7 +180,7 @@ public override List<string> GetPublishers()
{
if (!string.IsNullOrWhiteSpace(game.Publisher))
{
return new List<string>() { game.Publisher };
return game.Publisher.Split(';').Select(publisher => publisher.Trim()).ToList();
}
}

Expand Down

0 comments on commit 6a1c759

Please sign in to comment.