소스 검색

Update development cookie

Lee Morgan 3 주 전
부모
커밋
902ebae979
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/logic/create_cookie.rs

+ 1 - 1
src/logic/create_cookie.rs

@@ -13,7 +13,7 @@ pub fn create_cookie(name: String, value: String) -> Cookie<'static> {
         Cookie::build(name, value)
             .path("/")
             .http_only(true)
-            .same_site(SameSite::Lax)
+            .same_site(SameSite::None)
             .secure(true)
             .max_age(Duration::days(90))
             .finish()