Skip to content

Commit ed0895b

Browse files
committed
Add cookie to request cookie store when it's present
1 parent 105f388 commit ed0895b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/org/asynchttpclient/netty/handler/intercept/Interceptors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public boolean exitAfterIntercept(Channel channel,
8282
}
8383

8484
if (requestCookieStore != null) {
85-
cookieStore.add(request.getUri(), c);
85+
requestCookieStore.add(request.getUri(), c);
8686
}
8787
}
8888
}

0 commit comments

Comments
 (0)