This commit is contained in:
M66B
2024-01-02 18:59:34 +01:00
parent f80792ca2d
commit 48007f5857
6 changed files with 13 additions and 36 deletions

View File

@@ -61,7 +61,7 @@ public class IPInfo {
Log.i(ex);
}
InetAddress address = DnsHelper.getByName(context, host);
InetAddress address = InetAddress.getByName(host);
return new Pair<>(address, getOrganization(address, context));
}