fix #533 change the function name
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -173,7 +173,7 @@ func (manager *Manager) SessionDestroy(w http.ResponseWriter, r *http.Request) { | ... | @@ -173,7 +173,7 @@ func (manager *Manager) SessionDestroy(w http.ResponseWriter, r *http.Request) { |
| 173 | } | 173 | } |
| 174 | 174 | ||
| 175 | // Get SessionStore by its id. | 175 | // Get SessionStore by its id. |
| 176 | func (manager *Manager) GetProvider(sid string) (sessions SessionStore, err error) { | 176 | func (manager *Manager) GetSessionStore(sid string) (sessions SessionStore, err error) { |
| 177 | sessions, err = manager.provider.SessionRead(sid) | 177 | sessions, err = manager.provider.SessionRead(sid) |
| 178 | return | 178 | return |
| 179 | } | 179 | } | ... | ... |
-
Please register or sign in to post a comment