Skip to content

Commit 4a5bbb6

Browse files
committed
System Touch
1 parent 3707b87 commit 4a5bbb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/server/nitro/ConnectionStatusServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ private String fetchGeo(String ip)
129129

130130
try (BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream())))
131131
{
132-
String city = br.readLine();
133132
String country = br.readLine();
133+
String city = br.readLine();
134134
return (city != null ? city : "?") + ", " + (country != null ? country : "?");
135135
}
136136
} catch (Exception e)

0 commit comments

Comments
 (0)