1 parent 3707b87 commit 4a5bbb6Copy full SHA for 4a5bbb6
1 file changed
source/server/nitro/ConnectionStatusServer.java
@@ -129,8 +129,8 @@ private String fetchGeo(String ip)
129
130
try (BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream())))
131
{
132
- String city = br.readLine();
133
String country = br.readLine();
+ String city = br.readLine();
134
return (city != null ? city : "?") + ", " + (country != null ? country : "?");
135
}
136
} catch (Exception e)
0 commit comments