Default Method in HttpRequest to HttpMethod.Get

This commit is contained in:
Qstick 2022-01-03 14:13:29 -06:00
parent 08d112a96f
commit 573dde97e5

View file

@ -14,6 +14,7 @@ namespace NzbDrone.Common.Http
{
Url = new HttpUri(url);
Headers = new HttpHeader();
Method = HttpMethod.Get;
ConnectionKeepAlive = true;
AllowAutoRedirect = true;
Cookies = new Dictionary<string, string>();