CountryCode.XX -> CountryCode.Unknown

This commit is contained in:
Salman Ahmed 2022-07-18 08:45:54 +03:00
parent 05d692bd55
commit cf99849478
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace osu.Game.Tests.Visual.Online
{ {
Username = @"Somebody", Username = @"Somebody",
Id = 1, Id = 1,
CountryCode = CountryCode.XX, CountryCode = CountryCode.Unknown,
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c1.jpg", CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c1.jpg",
JoinDate = DateTimeOffset.Now.AddDays(-1), JoinDate = DateTimeOffset.Now.AddDays(-1),
LastVisit = DateTimeOffset.Now, LastVisit = DateTimeOffset.Now,

View File

@ -13,7 +13,7 @@ namespace osu.Game.Users
public enum CountryCode public enum CountryCode
{ {
[Description("Unknown")] [Description("Unknown")]
XX = 0, Unknown = 0,
[Description("Bangladesh")] [Description("Bangladesh")]
BD, BD,