mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-16 01:40:47 +02:00
Default Method in HttpRequest to HttpMethod.Get
This commit is contained in:
parent
08d112a96f
commit
573dde97e5
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ public HttpRequest(string url, HttpAccept httpAccept = null)
|
|||
{
|
||||
Url = new HttpUri(url);
|
||||
Headers = new HttpHeader();
|
||||
Method = HttpMethod.Get;
|
||||
ConnectionKeepAlive = true;
|
||||
AllowAutoRedirect = true;
|
||||
Cookies = new Dictionary<string, string>();
|
||||
|
|
|
|||
Loading…
Reference in a new issue