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
commit d726a7acb2

View file

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