We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886ab52 commit d8b9df2Copy full SHA for d8b9df2
snunit-undertow/src/io/undertow/server/HttpServerExchange.scala
@@ -33,7 +33,8 @@ final class HttpServerExchange private[undertow] (private[undertow] val req: Req
33
cookieString.split(';').foreach {
34
case s"$n=$v" =>
35
val name = n.trim()
36
- val cookie = CookieImpl(name, v)
+ val value = v.trim()
37
+ val cookie = CookieImpl(name, value)
38
result.put(name, cookie)
39
case _ =>
40
}
0 commit comments