1
0
Fork 1

catch more exceptions in JingleSocks5Transport

This commit is contained in:
Christian Schneppe 2020-02-10 20:21:40 +01:00
parent 84f61f35b5
commit ccf87a2daa

View file

@ -173,7 +173,7 @@ public class JingleSocks5Transport extends JingleTransport {
socket.setSoTimeout(0);
isEstablished = true;
callback.established();
} catch (IOException e) {
} catch (Exception e) {
callback.failed();
}
}).start();