Fixed: Sonarr UI Authentication cookie should be placed on path (UrlBase) instead of domain alone.

fixes #1874
This commit is contained in:
Taloth Saldono 2017-04-27 23:16:17 +02:00
parent c94636e2b3
commit d726a7acb2
1 changed files with 3 additions and 2 deletions

View File

@ -68,6 +68,7 @@ namespace NzbDrone.Api.Authentication
{
RedirectUrl = _configFileProvider.UrlBase + "/login",
UserMapper = _authenticationService,
Path = _configFileProvider.UrlBase,
CryptographyConfiguration = cryptographyConfiguration
});
}