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