diff --git a/osu.Game.Rulesets.Karaoke/IO/Serialization/Converters/TimeTagsConverter.cs b/osu.Game.Rulesets.Karaoke/IO/Serialization/Converters/TimeTagsConverter.cs index faa5cd9a5..da151f353 100644 --- a/osu.Game.Rulesets.Karaoke/IO/Serialization/Converters/TimeTagsConverter.cs +++ b/osu.Game.Rulesets.Karaoke/IO/Serialization/Converters/TimeTagsConverter.cs @@ -2,6 +2,7 @@ // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; +using System.Linq; using osu.Game.Rulesets.Karaoke.Objects; using osu.Game.Rulesets.Karaoke.Utils; @@ -10,6 +11,6 @@ namespace osu.Game.Rulesets.Karaoke.IO.Serialization.Converters public class TimeTagsConverter : SortableJsonConvertor { protected override IList GetSortedValue(IEnumerable objects) - => TimeTagsUtils.Sort(objects); + => TimeTagsUtils.Sort(objects).ToArray(); } }