fix ServletUtil readCookieMap lowercase name

This commit is contained in:
dongqing 2019-11-08 12:58:44 +08:00
parent 554ab6b20a
commit 690725902a

View File

@ -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;
}