mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-02 01:31:03 +02:00
Fixed: Empty should redirect to Base
This commit is contained in:
parent
d9e211472b
commit
63b6adf0e1
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ public string RedirectUrl
|
|||
get
|
||||
{
|
||||
var newUrl = Headers["Location"];
|
||||
if (newUrl == null || newUrl.IsNullOrWhiteSpace())
|
||||
if (newUrl == null)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue