1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-20 03:17:04 +00:00

update the vendor json library which is used when 'WithOptimizations' passed on 'app.Run' and resolve https://github.com/kataras/iris/pull/839#issuecomment-351374343

Former-commit-id: ad3354717d593393a3f3aec863ec92f1f7e1c829
This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-12-13 14:37:02 +02:00
parent 20f68416a7
commit ea863914dc
8 changed files with 18 additions and 5 deletions

View File

@@ -146,7 +146,7 @@ func (s *Sessions) Destroy(ctx context.Context) {
if cookieValue == "" { // nothing to destroy
return
}
RemoveCookie(ctx, s.config.Cookie)
RemoveCookie(ctx, s.config.Cookie, s.config.AllowReclaim)
s.provider.Destroy(cookieValue)
}