mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
fix ServletUtil readCookieMap lowercase name
This commit is contained in:
parent
554ab6b20a
commit
690725902a
@ -416,7 +416,7 @@ public class ServletUtil {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
for (Cookie cookie : cookies) {
|
for (Cookie cookie : cookies) {
|
||||||
cookieMap.put(cookie.getName().toLowerCase(), cookie);
|
cookieMap.put(cookie.getName(), cookie);
|
||||||
}
|
}
|
||||||
return cookieMap;
|
return cookieMap;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user