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.
2 parents cd4b43e + 3574efd commit 07af5baCopy full SHA for 07af5ba
1 file changed
jooby/src/main/java/org/jooby/internal/CookieSessionManager.java
@@ -100,6 +100,9 @@ public Definition cookie() {
100
101
private Map<String, String> attributes(final String raw) {
102
String unsigned = Cookie.Signature.unsign(raw, secret);
103
+ if (unsigned == null) {
104
+ return Collections.emptyMap();
105
+ }
106
return Cookie.URL_DECODER.apply(unsigned);
107
}
108
0 commit comments