1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

Fix http.Cookie SameSite is not copied. (#450)

* fix: http.Cookie SameSite is not copied.

* Update CHANGELOG.md
This commit is contained in:
Mitsuo Heijo
2020-03-18 03:48:52 +09:00
committed by GitHub
parent 3108f765a5
commit 362cdf7713
3 changed files with 32 additions and 0 deletions

View File

@ -207,5 +207,6 @@ func copyCookie(c *http.Cookie) *http.Cookie {
HttpOnly: c.HttpOnly,
Raw: c.Raw,
Unparsed: c.Unparsed,
SameSite: c.SameSite,
}
}