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() { ...@@ -192,6 +192,7 @@ func Run() {
} }
if SessionOn { if SessionOn {
var err error
sessionConfig := AppConfig.String("sessionConfig") sessionConfig := AppConfig.String("sessionConfig")
if sessionConfig == "" { if sessionConfig == "" {
sessionConfig = `{"cookieName":"` + SessionName + `",` + sessionConfig = `{"cookieName":"` + SessionName + `",` +
...@@ -203,7 +204,7 @@ func Run() { ...@@ -203,7 +204,7 @@ func Run() {
`"enableSetCookie":` + strconv.FormatBool(SessionAutoSetCookie) + `,` + `"enableSetCookie":` + strconv.FormatBool(SessionAutoSetCookie) + `,` +
`"cookieLifeTime":` + strconv.Itoa(SessionCookieLifeTime) + `}` `"cookieLifeTime":` + strconv.Itoa(SessionCookieLifeTime) + `}`
} }
GlobalSessions, err := session.NewManager(SessionProvider, GlobalSessions, err = session.NewManager(SessionProvider,
sessionConfig) sessionConfig)
if err != nil { if err != nil {
panic(err) 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