diff --git a/KfChatDotNetBot/Services/Shuffle.cs b/KfChatDotNetBot/Services/Shuffle.cs index 85b665a..e37c09f 100644 --- a/KfChatDotNetBot/Services/Shuffle.cs +++ b/KfChatDotNetBot/Services/Shuffle.cs @@ -171,9 +171,17 @@ public class Shuffle : IDisposable _logger.Debug($"Grabbing details for Shuffle bet {betId}"); var jsonBody = new Dictionary { - { "operationName", "GetUserProfile" }, + { "operationName", "GetBetInfo" }, { "query", gql }, - { "variables", new Dictionary { { "betId", betId } } } + { "variables", new Dictionary { { "betId", betId } } }, + { "extensions", new Dictionary> { + { + "clientLibrary", new Dictionary() + { + {"name", "@apollo/client"}, + {"version", "4.1.4"} + } + } } }, }; _logger.Debug("Created dictionary object for the JSON payload, should serialize to following value:"); _logger.Debug(JsonSerializer.Serialize(jsonBody));