Fixed: Links to Sonarr now uses auth cookie (#2156)

(cherry picked from commit a47cb2390eb5151ed19388def46b0bb165d27647)

Co-authored-by: Mark McDowall <mark@mcdowall.ca>
This commit is contained in:
servarr[bot] 2021-04-15 08:10:19 -04:00 committed by GitHub
parent 20dd1e1352
commit f50556d4d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ public LidarrNancyCookie(string name, string value, bool httpOnly, bool secure,
public override string ToString()
{
return base.ToString() + "; SameSite=Strict";
return base.ToString() + "; SameSite=Lax";
}
}
}