diff options
| author | doufenghu <[email protected]> | 2020-05-08 17:15:24 +0800 |
|---|---|---|
| committer | doufenghu <[email protected]> | 2020-05-08 17:15:24 +0800 |
| commit | e0ab4d6bafcb251aca60d13de535b5f13e4d8a83 (patch) | |
| tree | 8dfba875710f84660d10f710ef775a3cbfe68554 | |
| parent | 7594be2f994e559f3c7de0d66642da17bfbd3fad (diff) | |
fix(IPLookup):定位库加载时无需指定database,解决固定IPLOCATION 问题v1.0.2.200508
| -rw-r--r-- | src/main/java/com/zdjizhi/utils/GalaxyDataBaseReader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/zdjizhi/utils/GalaxyDataBaseReader.java b/src/main/java/com/zdjizhi/utils/GalaxyDataBaseReader.java index 2cd8406..7641fc1 100644 --- a/src/main/java/com/zdjizhi/utils/GalaxyDataBaseReader.java +++ b/src/main/java/com/zdjizhi/utils/GalaxyDataBaseReader.java @@ -178,7 +178,7 @@ public class GalaxyDataBaseReader { public LocationResponse location(InetAddress ipAddress) throws IOException, GeoIp2Exception { - return this.get(ipAddress, LocationResponse.class, "IPLOCATOR"); + return this.get(ipAddress, LocationResponse.class, ""); } |
