From 469e24dde18830c6b099a1cec0a990fd7ac678be Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 5 Mar 2026 00:54:16 -0600 Subject: [PATCH] Can't use application/json in the request headers but it seems it doesn't matter based on testing --- KfChatDotNetBot/Services/Shuffle.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/KfChatDotNetBot/Services/Shuffle.cs b/KfChatDotNetBot/Services/Shuffle.cs index 1199f4f..e1a06a1 100644 --- a/KfChatDotNetBot/Services/Shuffle.cs +++ b/KfChatDotNetBot/Services/Shuffle.cs @@ -185,7 +185,6 @@ public class Shuffle : IDisposable } using var client = new HttpClient(handler); - client.DefaultRequestHeaders.Add("content-type", "application/json"); var postBody = JsonContent.Create(jsonBody); var response = await client.PostAsync("https://shuffle.com/main-api/graphql/api/graphql", postBody, _cancellationToken); var responseContent = await response.Content.ReadFromJsonAsync(cancellationToken: _cancellationToken);