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 ed98538 commit 59bda9dCopy full SHA for 59bda9d
api/src/main/java/com/ning/http/util/AsyncHttpProviderUtils.java
@@ -505,7 +505,7 @@ public static String parseCharset(String contentType) {
505
506
public static Cookie parseCookie(String value) {
507
String[] fields = value.split(";\\s*");
508
- String[] cookie = fields[0].split("=");
+ String[] cookie = fields[0].split("=", 2);
509
String cookieName = cookie[0];
510
String cookieValue = (cookie.length == 1) ? null : cookie[1];
511
0 commit comments