From 494ef1673535decf1148c6b4750500d257880200 Mon Sep 17 00:00:00 2001 From: Mitchell Cash Date: Sun, 30 Apr 2017 18:30:59 +1000 Subject: [PATCH] Fixed: Sonarr UI Authentication cookie should be placed on path (UrlBase) instead of domain alone. Fixes ##1451 --- src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs index 725bdab16..e18a2a9dc 100644 --- a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs +++ b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs @@ -70,6 +70,7 @@ namespace NzbDrone.Api.Authentication { RedirectUrl = _configFileProvider.UrlBase + "/login", UserMapper = _authenticationService, + Path = _configFileProvider.UrlBase, CryptographyConfiguration = cryptographyConfiguration }); }