在IpUtils里修复ip空字符串引起的异常问题
This commit is contained in:
Chasel
2023-03-30 14:42:18 +08:00
parent e618f8e404
commit cdc52f32ea
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ public class AreaController {
@Parameter(name = "ip", description = "IP", required = true)
public CommonResult<String> getAreaByIp(@RequestParam("ip") String ip) {
// 获得城市
Area area = IPUtils.getArea(ip.trim());
Area area = IPUtils.getArea(ip);
if (area == null) {
return success("未知");
}