Change cookie SameSite from None to Lax (#7269)

This commit is contained in:
Patrick Koenig 2020-02-21 11:02:28 -08:00 committed by GitHub
parent 3ecdbfe7f4
commit d5724f2f63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -48,7 +48,6 @@ namespace Jackett.Server
options.AccessDeniedPath = new PathString("/UI/Login"); options.AccessDeniedPath = new PathString("/UI/Login");
options.LogoutPath = new PathString("/UI/Logout"); options.LogoutPath = new PathString("/UI/Logout");
options.Cookie.Name = "Jackett"; options.Cookie.Name = "Jackett";
options.Cookie.SameSite = SameSiteMode.None;
}); });