Skip to content

Commit 8dc4801

Browse files
committed
Fixed cookie store issue
1 parent 0ca196b commit 8dc4801

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "Go-Web Framework" will be documented in this file.
44

55
## [Unreleased]
66

7+
## [v0.6-3-beta] - 2021-08-27
8+
### Fixed
9+
- Fixed cookie store issue
10+
711
## [v0.6-2-beta] - 2021-08-27
812
### Changed
913
- Changed middleware architecture. Now every middleware consists in an isolated structure.

ioc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func RetrieveConfig() *kernel.Conf {
2828
func RetrieveCookieStore() *sessions.CookieStore {
2929
var store *sessions.CookieStore
3030
if err := RetrieveSingletonContainer().Invoke(func(c *sessions.CookieStore) {
31-
c = store
31+
store = c
3232
}); err != nil {
3333
log.Fatal(err)
3434
}

0 commit comments

Comments
 (0)