Skip to content

Commit 7ac0b6b

Browse files
committed
remove ssl
1 parent 0ffb4da commit 7ac0b6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/alecgorge/minecraft/jsonapi/JSONServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ void connectionInfo() {
131131
outLog.info("[JSONAPI] Active and listening for requests.");
132132

133133
try {
134-
URL whatismyip = new URL("https://tools.alecgorge.com/ip.php");
134+
URL whatismyip = new URL("http://tools.alecgorge.com/ip.php");
135135
BufferedReader in = new BufferedReader(new InputStreamReader(whatismyip.openStream()));
136136

137137
String ip = in.readLine();
138138

139-
URL checkURL = new URL("https://tools.alecgorge.com/port_check.php");
139+
URL checkURL = new URL("http://tools.alecgorge.com/port_check.php");
140140

141141
outLog.info("[JSONAPI] External IP: " + ip);
142142

0 commit comments

Comments
 (0)