Merge pull request #27574 from bdach/fix-invalid-type

Fix ruleset medals not displaying due to deserialisation failure
This commit is contained in:
Dean Herbert 2024-03-12 05:20:22 +08:00 committed by GitHub
commit 301750f77f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ namespace osu.Game.Online.Notifications.WebSocket.Events
public uint AchievementId { get; set; }
[JsonProperty("achievement_mode")]
public ushort? AchievementMode { get; set; }
public string? AchievementMode { get; set; }
[JsonProperty("cover_url")]
public string CoverUrl { get; set; } = string.Empty;