From 5dabec5cc8bbed0cf71a587fbae4c12619feb208 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 12 Apr 2021 22:14:41 -0700 Subject: [PATCH] Fixed: Links to Sonarr now uses auth cookie (cherry picked from commit a47cb2390eb5151ed19388def46b0bb165d27647) --- src/Radarr.Http/Authentication/RadarrNancyCookie.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Radarr.Http/Authentication/RadarrNancyCookie.cs b/src/Radarr.Http/Authentication/RadarrNancyCookie.cs index 7da243faa..cc1f48be8 100644 --- a/src/Radarr.Http/Authentication/RadarrNancyCookie.cs +++ b/src/Radarr.Http/Authentication/RadarrNancyCookie.cs @@ -32,7 +32,7 @@ namespace Radarr.Http.Authentication public override string ToString() { - return base.ToString() + "; SameSite=Strict"; + return base.ToString() + "; SameSite=Lax"; } } }