diff --git a/app/static/js/theme.js b/app/static/js/theme.js index 8f693d9..dc240f8 100644 --- a/app/static/js/theme.js +++ b/app/static/js/theme.js @@ -6,7 +6,7 @@ const YEAR = 60 * 60 * 24 * 365; const storeCookieAndReload = (name, value) => { - document.cookie = name + " = " + value + "; Path=/; Max-Age=" + (50 * YEAR); + document.cookie = name + " = " + value + "; Path=/; Secure; SameSite=strict; Max-Age=" + (50 * YEAR); location.reload(); }