mirror of
https://github.com/Readarr/Readarr
synced 2026-01-06 23:54:49 +01:00
Fixed: Default redirect URL for forms auth will use URL Base if configured
This commit is contained in:
parent
7ef1ca8a00
commit
50a0e9514e
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ private Response Login(LoginResource resource)
|
|||
expiry = DateTime.UtcNow.AddDays(7);
|
||||
}
|
||||
|
||||
return this.LoginAndRedirect(user.Identifier, expiry);
|
||||
return this.LoginAndRedirect(user.Identifier, expiry, _configFileProvider.UrlBase + "/");
|
||||
}
|
||||
|
||||
private Response Logout()
|
||||
|
|
|
|||
Loading…
Reference in a new issue