Merge pull request #3250 from iv-org/fix-cookies

This commit is contained in:
Samantaz Fox 2022-08-07 00:52:30 +02:00
commit 19886f71f5
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ struct Invidious::User
expires: Time.utc + 2.years,
secure: SECURE,
http_only: true,
samesite: HTTP::Cookie::SameSite::Strict
samesite: HTTP::Cookie::SameSite::Lax
)
end
@ -32,7 +32,7 @@ struct Invidious::User
expires: Time.utc + 2.years,
secure: SECURE,
http_only: false,
samesite: HTTP::Cookie::SameSite::Strict
samesite: HTTP::Cookie::SameSite::Lax
)
end
end