mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-15 20:12:04 +01:00
Handle AlreadyConnectedException in ReconnectionManager
Fixes SMACK-725.
This commit is contained in:
parent
e943bbbd91
commit
45b04800a4
1 changed files with 5 additions and 1 deletions
|
@ -238,7 +238,11 @@ public class ReconnectionManager {
|
||||||
// Makes a reconnection attempt
|
// Makes a reconnection attempt
|
||||||
try {
|
try {
|
||||||
if (isReconnectionPossible(connection)) {
|
if (isReconnectionPossible(connection)) {
|
||||||
|
try {
|
||||||
connection.connect();
|
connection.connect();
|
||||||
|
} catch (SmackException.AlreadyConnectedException e) {
|
||||||
|
LOGGER.log(Level.FINER, "Connection was already connected on reconnection attempt", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// TODO Starting with Smack 4.2, connect() will no
|
// TODO Starting with Smack 4.2, connect() will no
|
||||||
// longer login automatically. So change this and the
|
// longer login automatically. So change this and the
|
||||||
|
|
Loading…
Reference in a new issue