Make loadSessionFromString private
This commit is contained in:
		
							parent
							
								
									130d03758d
								
							
						
					
					
						commit
						f435fa68ab
					
				|  | @ -94,15 +94,15 @@ func (store *SessionStore) Load(req *http.Request) (*sessions.SessionState, erro | ||||||
| 	if !ok { | 	if !ok { | ||||||
| 		return nil, fmt.Errorf("Cookie Signature not valid") | 		return nil, fmt.Errorf("Cookie Signature not valid") | ||||||
| 	} | 	} | ||||||
| 	session, err := store.LoadSessionFromString(val) | 	session, err := store.loadSessionFromString(val) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, fmt.Errorf("error loading session: %s", err) | 		return nil, fmt.Errorf("error loading session: %s", err) | ||||||
| 	} | 	} | ||||||
| 	return session, nil | 	return session, nil | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // LoadSessionFromString loads the session based on the ticket value
 | // loadSessionFromString loads the session based on the ticket value
 | ||||||
| func (store *SessionStore) LoadSessionFromString(value string) (*sessions.SessionState, error) { | func (store *SessionStore) loadSessionFromString(value string) (*sessions.SessionState, error) { | ||||||
| 	ticket, err := decodeTicket(store.CookieOptions.CookieName, value) | 	ticket, err := decodeTicket(store.CookieOptions.CookieName, value) | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		return nil, err | 		return nil, err | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue