mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-08 21:14:30 +02:00
Fixed: BeyondHD using improperly cased Content-Type header
This commit is contained in:
parent
8b8d0b24ae
commit
f26b0474f5
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue