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
1 changed files with 1 additions and 1 deletions

View File

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