Don't reset request Url when calculating RedirectUrl

pull/823/merge
Qstick 2 years ago
parent eadea745f8
commit ae2d9b795b

@ -89,13 +89,13 @@ namespace NzbDrone.Common.Http
if (match.Success)
{
return (Request.Url += new HttpUri(match.Groups[2].Value)).FullUri;
return (Request.Url + new HttpUri(match.Groups[2].Value)).FullUri;
}
return string.Empty;
}
return (Request.Url += new HttpUri(newUrl)).FullUri;
return (Request.Url + new HttpUri(newUrl)).FullUri;
}
}

Loading…
Cancel
Save