Skip to content

Commit e2d92f7

Browse files
author
Paul Pham
committed
Fix syntax error
1 parent d477252 commit e2d92f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

session.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func (s *Session) GetSessionStoreWithCtx(ctx *fasthttp.RequestCtx) (sessionStore
118118
}
119119

120120
if tmp, ok := s.ccmap.Get(getCtxPointer(ctx)); ok {
121-
return tmp.(fasthttpsession.SessionStore), nil
121+
return tmp.(SessionStore), nil
122122
}
123123
return sessionStore, errors.New(fmt.Sprintf("Session store is empty"))
124124
}

0 commit comments

Comments
 (0)