Fixed: BeyondHD using improperly cased Content-Type header

This commit is contained in:
Qstick 2022-07-05 07:32:16 -05:00
parent 8b8d0b24ae
commit f26b0474f5

View file

@ -111,7 +111,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
var request = new HttpRequest(searchUrl, HttpAccept.Json);
request.Headers.Add("Content-type", "application/json");
request.Headers.ContentType = "application/json";
request.Method = HttpMethod.Post;
request.SetContent(body.ToJson());