CookieSameSite bug fix
This commit is contained in:
parent
59110cdff8
commit
874eaaa8ce
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ public class WebConfig implements WebMvcConfigurer {
|
|||
} else if (sameSite.equalsIgnoreCase(Cookie.SameSite.NONE.attributeValue())) {
|
||||
return CookieSameSiteSupplier.ofNone();
|
||||
} else if (sameSite.equalsIgnoreCase(Cookie.SameSite.LAX.attributeValue())) {
|
||||
return CookieSameSiteSupplier.ofNone();
|
||||
return CookieSameSiteSupplier.ofLax();
|
||||
} else if (sameSite.equalsIgnoreCase(Cookie.SameSite.STRICT.attributeValue())) {
|
||||
return CookieSameSiteSupplier.ofStrict();
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue