fix: specify application/json content-type in dispatch requests
This commit is contained in:
parent
28a199e507
commit
ddd966ad58
@ -3,6 +3,7 @@ using System.Linq;
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@ -59,7 +60,7 @@ namespace PluralKit.Core
|
|||||||
o.Add("guild_id", data.GuildId.ToString());
|
o.Add("guild_id", data.GuildId.ToString());
|
||||||
o.Add("data", data.EventData);
|
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)
|
public static JObject ToDispatchJson(this PKMessage msg, string memberRef)
|
||||||
|
Loading…
Reference in New Issue
Block a user