forked from mirror/monocles_chat_clean
deal with broken frameworks
This commit is contained in:
parent
5810646c29
commit
b128fbef12
1 changed files with 1 additions and 4 deletions
|
@ -198,10 +198,7 @@ public class XmppConnection implements Runnable {
|
|||
socket = new Socket();
|
||||
socket.connect(addr, Config.SOCKET_TIMEOUT * 1000);
|
||||
socketError = false;
|
||||
} catch (final UnknownHostException e) {
|
||||
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": " + e.getMessage());
|
||||
i++;
|
||||
} catch (final IOException e) {
|
||||
} catch (final Throwable e) {
|
||||
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": " + e.getMessage());
|
||||
i++;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue