Skip to content

Commit

Permalink
Fixed cookie store issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RobyFerro committed Aug 27, 2021
1 parent 0ca196b commit 8dc4801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to the "Go-Web Framework" will be documented in this file.

## [Unreleased]

## [v0.6-3-beta] - 2021-08-27
### Fixed
- Fixed cookie store issue

## [v0.6-2-beta] - 2021-08-27
### Changed
- Changed middleware architecture. Now every middleware consists in an isolated structure.
Expand Down
2 changes: 1 addition & 1 deletion ioc.go
Expand Up @@ -28,7 +28,7 @@ func RetrieveConfig() *kernel.Conf {
func RetrieveCookieStore() *sessions.CookieStore {
var store *sessions.CookieStore
if err := RetrieveSingletonContainer().Invoke(func(c *sessions.CookieStore) {
c = store
store = c
}); err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit 8dc4801

Please sign in to comment.