Closed
Description
The empty cookie value makes cookie unparsable, which precludes deleting values:
E.g. the Set-Cookie: cookieValue=; Path=/
won't be recognized as a valid HTTPClient.Cookie
structure.
This violates https://tools.ietf.org/html/rfc6265#section-4.1.1 which requires empty cookies to be parsable.
One fix would be just to add a omittingEmptySubsequences: true
to the split() call.