We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca196b commit 8dc4801Copy full SHA for 8dc4801
CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to the "Go-Web Framework" will be documented in this file.
4
5
## [Unreleased]
6
7
+## [v0.6-3-beta] - 2021-08-27
8
+### Fixed
9
+- Fixed cookie store issue
10
+
11
## [v0.6-2-beta] - 2021-08-27
12
### Changed
13
- Changed middleware architecture. Now every middleware consists in an isolated structure.
ioc.go
@@ -28,7 +28,7 @@ func RetrieveConfig() *kernel.Conf {
28
func RetrieveCookieStore() *sessions.CookieStore {
29
var store *sessions.CookieStore
30
if err := RetrieveSingletonContainer().Invoke(func(c *sessions.CookieStore) {
31
- c = store
+ store = c
32
}); err != nil {
33
log.Fatal(err)
34
}
0 commit comments