!31 IP查询导致异常问题

Merge pull request !31 from chasel_jc/master
This commit is contained in:
芋道源码
2023-04-02 04:51:35 +00:00
committed by Gitee

View File

@@ -51,7 +51,7 @@ public class IPUtils {
*/
@SneakyThrows
public static Integer getAreaId(String ip) {
return Integer.parseInt(SEARCHER.search(ip));
return Integer.parseInt(SEARCHER.search(ip.trim()));
}
/**