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 {
7
7
8
8
archivesBaseName = " Archipelago.MultiClient.Java"
9
9
group = ' gg.archipelago.APClient'
10
- version = ' 1.6 '
10
+ version = ' 1.7 '
11
11
12
12
java. toolchain. languageVersion = JavaLanguageVersion . of(8 )
13
13
Original file line number Diff line number Diff line change 16
16
import org .java_websocket .client .WebSocketClient ;
17
17
import org .java_websocket .handshake .ServerHandshake ;
18
18
19
+ import javax .net .ssl .SSLException ;
19
20
import java .net .URI ;
20
21
import java .net .URISyntaxException ;
21
22
import java .util .*;
@@ -277,6 +278,7 @@ public void run() {
277
278
278
279
@ Override
279
280
public void onError (Exception ex ) {
281
+ if (ex instanceof SSLException ) return ;
280
282
apClient .onError (ex );
281
283
LOGGER .log (Level .WARNING , "Error in websocket connection" );
282
284
ex .printStackTrace ();
You can’t perform that action at this time.
0 commit comments