From 5600fd861346fa6d2b1b4a3320c2c7cdd9bac730 Mon Sep 17 00:00:00 2001 From: Junya Okuno Date: Sat, 25 Apr 2020 13:15:05 +0900 Subject: [PATCH] net.http: remove redundant httponly handling --- vlib/net/http/cookie.v | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vlib/net/http/cookie.v b/vlib/net/http/cookie.v index 522f04bc49..ae9a1ed66d 100644 --- a/vlib/net/http/cookie.v +++ b/vlib/net/http/cookie.v @@ -107,10 +107,6 @@ pub fn read_set_cookies(h map[string][]string) []&Cookie { c.http_only = true continue } - 'httponly' { - c.http_only = true - continue - } 'domain' { c.domain = val continue