From c43f3f8e0e7bf538ed631447fe667e4e8cb2ace2 Mon Sep 17 00:00:00 2001 From: ntr Date: Wed, 15 Jan 2020 08:26:21 +1000 Subject: [PATCH] no samesite? --- server/src/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/http.rs b/server/src/http.rs index 34b3b994..cc61496f 100644 --- a/server/src/http.rs +++ b/server/src/http.rs @@ -354,7 +354,7 @@ fn recover(req: &mut Request) -> IronResult { let v = Cookie::build(TOKEN_HEADER, token) .http_only(true) - .same_site(SameSite::Strict) + // .same_site(SameSite::Strict) .path("/") .max_age(Duration::weeks(1)) // 1 week aligns with db set .finish();