From f50556d4d5ad84812fc1ee14af2d1f4d01bf9c07 Mon Sep 17 00:00:00 2001 From: "servarr[bot]" <68984020+servarr[bot]@users.noreply.github.com> Date: Thu, 15 Apr 2021 08:10:19 -0400 Subject: [PATCH] Fixed: Links to Sonarr now uses auth cookie (#2156) (cherry picked from commit a47cb2390eb5151ed19388def46b0bb165d27647) Co-authored-by: Mark McDowall --- src/Lidarr.Http/Authentication/LidarrNancyCookie.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lidarr.Http/Authentication/LidarrNancyCookie.cs b/src/Lidarr.Http/Authentication/LidarrNancyCookie.cs index 9ec8cbf6b..1b701876b 100644 --- a/src/Lidarr.Http/Authentication/LidarrNancyCookie.cs +++ b/src/Lidarr.Http/Authentication/LidarrNancyCookie.cs @@ -32,7 +32,7 @@ namespace Lidarr.Http.Authentication public override string ToString() { - return base.ToString() + "; SameSite=Strict"; + return base.ToString() + "; SameSite=Lax"; } } }