Skip to content

Commit 5773ce4

Browse files
remove http only
1 parent cbcc4e3 commit 5773ce4

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/handlers/http/oidc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,6 @@ fn build_cookie(name: &str, value: String) -> Cookie<'static> {
437437
let is_https = PARSEABLE.options.get_scheme() == "https";
438438
let mut cookie = Cookie::build(name.to_string(), value)
439439
.max_age(time::Duration::days(COOKIE_AGE_DAYS as i64))
440-
.http_only(true)
441440
.path("/".to_string());
442441

443442
if is_https {

0 commit comments

Comments
 (0)