Fixed: Empty should redirect to Base

This commit is contained in:
Qstick
2021-06-06 21:20:04 -04:00
parent d9e211472b
commit 63b6adf0e1

View File

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