1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-19 10:25:35 +00:00

Fixed: Follow 301 redirects when fetching torrents

Closes 
This commit is contained in:
Mark McDowall 2017-05-22 18:09:59 -07:00
parent 8eaab46488
commit 755575d107
No known key found for this signature in database
GPG key ID: D4CEFA9A718052E0

View file

@ -133,7 +133,9 @@ namespace NzbDrone.Core.Download
var response = _httpClient.Get(request);
if (response.StatusCode == HttpStatusCode.SeeOther || response.StatusCode == HttpStatusCode.Found)
if (response.StatusCode == HttpStatusCode.MovedPermanently ||
response.StatusCode == HttpStatusCode.Found ||
response.StatusCode == HttpStatusCode.SeeOther)
{
var locationHeader = response.Headers.GetSingleValue("Location");