fix: specify application/json content-type in dispatch requests

This commit is contained in:
spiral 2021-11-26 12:56:32 -05:00
parent 28a199e507
commit ddd966ad58
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31

View File

@ -3,6 +3,7 @@ using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
@ -59,7 +60,7 @@ namespace PluralKit.Core
o.Add("guild_id", data.GuildId.ToString());
o.Add("data", data.EventData);
return new StringContent(JsonConvert.SerializeObject(o));
return new StringContent(JsonConvert.SerializeObject(o), Encoding.UTF8, "application/json");
}
public static JObject ToDispatchJson(this PKMessage msg, string memberRef)