File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/main/java/gg/archipelago/APClient Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77
88archivesBaseName = " Archipelago.MultiClient.Java"
99group = ' gg.archipelago.APClient'
10- version = ' 1.6 '
10+ version = ' 1.7 '
1111
1212java. toolchain. languageVersion = JavaLanguageVersion . of(8 )
1313
Original file line number Diff line number Diff line change 1616import org .java_websocket .client .WebSocketClient ;
1717import org .java_websocket .handshake .ServerHandshake ;
1818
19+ import javax .net .ssl .SSLException ;
1920import java .net .URI ;
2021import java .net .URISyntaxException ;
2122import java .util .*;
@@ -277,6 +278,7 @@ public void run() {
277278
278279 @ Override
279280 public void onError (Exception ex ) {
281+ if (ex instanceof SSLException ) return ;
280282 apClient .onError (ex );
281283 LOGGER .log (Level .WARNING , "Error in websocket connection" );
282284 ex .printStackTrace ();
You can’t perform that action at this time.
0 commit comments