Fixed: Empty should redirect to Base

pull/133/head
Qstick 3 years ago
parent d9e211472b
commit 63b6adf0e1

@ -67,7 +67,7 @@ namespace NzbDrone.Common.Http
get
{
var newUrl = Headers["Location"];
if (newUrl == null || newUrl.IsNullOrWhiteSpace())
if (newUrl == null)
{
return string.Empty;
}

Loading…
Cancel
Save