1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 06:13:26 +00:00

fix: session destory

This commit is contained in:
holtyuzhuyanbo 2019-11-19 21:25:30 +08:00
parent 1923b8c767
commit 38a144c68f

View File

@ -270,7 +270,8 @@ func (manager *Manager) SessionDestroy(w http.ResponseWriter, r *http.Request) {
Path: "/", Path: "/",
HttpOnly: !manager.config.DisableHTTPOnly, HttpOnly: !manager.config.DisableHTTPOnly,
Expires: expiration, Expires: expiration,
MaxAge: -1} MaxAge: -1,
Domain: manager.config.Domain}
http.SetCookie(w, cookie) http.SetCookie(w, cookie)
} }