1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-31 17:25:58 +01:00

Merge pull request #184 from mityada/stream-management-exception

Drop stream management state on StreamManagementException
This commit is contained in:
Florian Schmaus 2017-11-21 21:15:41 +01:00 committed by GitHub
commit 813a5ba63f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,7 +310,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
addConnectionListener(new AbstractConnectionListener() { addConnectionListener(new AbstractConnectionListener() {
@Override @Override
public void connectionClosedOnError(Exception e) { public void connectionClosedOnError(Exception e) {
if (e instanceof XMPPException.StreamErrorException) { if (e instanceof XMPPException.StreamErrorException || e instanceof StreamManagementException) {
dropSmState(); dropSmState();
} }
} }