mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix ServletUtil readCookieMap lowercase name
This commit is contained in:
@@ -416,7 +416,7 @@ public class ServletUtil {
|
||||
return null;
|
||||
}
|
||||
for (Cookie cookie : cookies) {
|
||||
cookieMap.put(cookie.getName().toLowerCase(), cookie);
|
||||
cookieMap.put(cookie.getName(), cookie);
|
||||
}
|
||||
return cookieMap;
|
||||
}
|
||||
|
Reference in New Issue
Block a user