Skip to content

Commit 1b749e0

Browse files
authored
Merge pull request #3 from tranchitam/feature/enable-cookie-store-at-request-level
Add cookie to request cookie store when it's present
2 parents db637ec + ed0895b commit 1b749e0

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)