From 41629525e852e24e95650e14a92dc0464fc3ad5c Mon Sep 17 00:00:00 2001 From: RogueException Date: Wed, 18 May 2016 19:25:22 -0300 Subject: [PATCH] Fixed game name not serializing --- src/Discord.Net/API/Client/Common/Game.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net/API/Client/Common/Game.cs b/src/Discord.Net/API/Client/Common/Game.cs index 5c440b6ee..e41306cdc 100644 --- a/src/Discord.Net/API/Client/Common/Game.cs +++ b/src/Discord.Net/API/Client/Common/Game.cs @@ -4,7 +4,7 @@ namespace Discord.API.Client { public class Game { - [JsonProperty("game")] + [JsonProperty("name")] public string Name { get; set; } [JsonProperty("url")] public string Url { get; set; }