Skip to content

Commit

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

Expand Down

0 comments on commit 55bf875

Please sign in to comment.