1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-20 03:47:28 +08:00

No language doesn't mean "Other"

This commit is contained in:
Dean Herbert 2019-09-02 13:41:14 +09:00
parent c1c1c7874b
commit 6603cbd74d

View File

@ -133,7 +133,7 @@ namespace osu.Game.Overlays.BeatmapSet
source.Text = b.NewValue?.Metadata.Source ?? string.Empty;
tags.Text = b.NewValue?.Metadata.Tags ?? string.Empty;
genre.Text = b.NewValue?.OnlineInfo?.Genre?.Name ?? "Unspecified";
language.Text = b.NewValue?.OnlineInfo?.Language?.Name ?? "Other";
language.Text = b.NewValue?.OnlineInfo?.Language?.Name ?? "Unspecified";
};
}