Change cookie SameSite policy to Lax to fix login redirection issue
All checks were successful
Build MIPS Binary / build (push) Successful in 4m6s

This commit is contained in:
spinline
2026-02-07 15:38:56 +03:00
parent 13424fceeb
commit a948215538

View File

@@ -74,7 +74,7 @@ pub async fn login_handler(
let cookie = Cookie::build(("auth_token", token))
.path("/")
.http_only(true)
.same_site(SameSite::Strict)
.same_site(SameSite::Lax)
.max_age(Duration::seconds(expires_in))
.build();