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