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

このコミットが含まれているのは:
Samantaz Fox 2022-08-07 00:52:30 +02:00
コミット 19886f71f5
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: F42821059186176E
1個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -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