fix ffmpeg_video_downloads on cookie restore

This commit is contained in:
ayaka 2024-06-27 14:13:16 +12:00
parent ff2e274e5e
commit f398d16c22

View File

@ -122,7 +122,7 @@ fn set_cookies_method(req: Request<Body>, remove_cookies: bool) -> Response<Body
Some(value) => response.insert_cookie(
Cookie::build((name.to_owned(), value.clone()))
.path("/")
.http_only(true)
.http_only(name != "ffmpeg_video_downloads")
.expires(OffsetDateTime::now_utc() + Duration::weeks(52))
.into(),
),