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.
1 parent c3071b6 commit e48bf0bCopy full SHA for e48bf0b
src/main/java/com/ning/http/util/AsyncHttpProviderUtils.java
@@ -448,7 +448,7 @@ public static String parseCharset(String contentType) {
448
449
public static Cookie parseCookie(String value) {
450
String[] fields = value.split(";\\s*");
451
- String[] cookie = fields[0].split("=");
+ String[] cookie = fields[0].split("=", 2);
452
String cookieName = cookie[0];
453
String cookieValue = (cookie.length == 1) ? null : cookie[1];
454
0 commit comments