Fix skin parser not stripping whitespace before parsing

This commit is contained in:
Dean Herbert
2021-03-18 15:36:07 +09:00
parent 822d469b2c
commit bb3c3f302a
3 changed files with 13 additions and 0 deletions

View File

@ -36,6 +36,8 @@ namespace osu.Game.Beatmaps.Formats
if (ShouldSkipLine(line))
continue;
line = line.Trim();
if (line.StartsWith('[') && line.EndsWith(']'))
{
if (!Enum.TryParse(line[1..^1], out section))