We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ffb4da commit 7ac0b6bCopy full SHA for 7ac0b6b
src/main/java/com/alecgorge/minecraft/jsonapi/JSONServer.java
@@ -131,12 +131,12 @@ void connectionInfo() {
131
outLog.info("[JSONAPI] Active and listening for requests.");
132
133
try {
134
- URL whatismyip = new URL("https://tools.alecgorge.com/ip.php");
+ URL whatismyip = new URL("http://tools.alecgorge.com/ip.php");
135
BufferedReader in = new BufferedReader(new InputStreamReader(whatismyip.openStream()));
136
137
String ip = in.readLine();
138
139
- URL checkURL = new URL("https://tools.alecgorge.com/port_check.php");
+ URL checkURL = new URL("http://tools.alecgorge.com/port_check.php");
140
141
outLog.info("[JSONAPI] External IP: " + ip);
142
0 commit comments