Commit e8f5c104 authored by slene's avatar slene

Merge pull request #457 from luxuchu/patch-1

fix #453
parents 8d79f838 afadb3f6
......@@ -192,6 +192,7 @@ func Run() {
}
if SessionOn {
var err error
sessionConfig := AppConfig.String("sessionConfig")
if sessionConfig == "" {
sessionConfig = `{"cookieName":"` + SessionName + `",` +
......@@ -203,7 +204,7 @@ func Run() {
`"enableSetCookie":` + strconv.FormatBool(SessionAutoSetCookie) + `,` +
`"cookieLifeTime":` + strconv.Itoa(SessionCookieLifeTime) + `}`
}
GlobalSessions, err := session.NewManager(SessionProvider,
GlobalSessions, err = session.NewManager(SessionProvider,
sessionConfig)
if err != nil {
panic(err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment