Fix set cookie bug, zero max age is not valid.

This commit is contained in:
liaoziqian 2017-03-21 09:15:30 +08:00
parent 21d1267c14
commit b0e2012a17
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
switch {
case maxAge > 0:
fmt.Fprintf(&b, "; Expires=%s; Max-Age=%d", time.Now().Add(time.Duration(maxAge)*time.Second).UTC().Format(time.RFC1123), maxAge)
case maxAge < 0:
case maxAge <= 0:
fmt.Fprintf(&b, "; Max-Age=0")
}
}