1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.http: remove redundant httponly handling

This commit is contained in:
Junya Okuno 2020-04-25 13:15:05 +09:00 committed by GitHub
parent a924defb94
commit 5600fd8613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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