diff --git a/osu.Game/Database/BeatmapMetadata.cs b/osu.Game/Database/BeatmapMetadata.cs index 098c524cc3..ebca0f1cad 100644 --- a/osu.Game/Database/BeatmapMetadata.cs +++ b/osu.Game/Database/BeatmapMetadata.cs @@ -1,6 +1,7 @@ // Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE +using System.Linq; using SQLite.Net.Attributes; namespace osu.Game.Database @@ -31,6 +32,6 @@ namespace osu.Game.Database TitleUnicode, Source, Tags - }; + }.Where(s => !string.IsNullOrEmpty(s)).ToArray(); } } \ No newline at end of file