mirror of https://github.com/ppy/osu
Don't strip comments from metadata during parsin
This commit is contained in:
parent
e22650293d
commit
4f8edcd336
|
@ -36,7 +36,13 @@ protected override void ParseStreamInto(LineBufferedReader stream, T output)
|
|||
if (ShouldSkipLine(line))
|
||||
continue;
|
||||
|
||||
line = StripComments(line).TrimEnd();
|
||||
if (section != Section.Metadata)
|
||||
{
|
||||
// comments should not be stripped from metadata lines, as the song metadata may contain "//" as valid data.
|
||||
line = StripComments(line);
|
||||
}
|
||||
|
||||
line = line.TrimEnd();
|
||||
|
||||
if (line.StartsWith('[') && line.EndsWith(']'))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue