浏览代码

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()