Drop stream management state on StreamManagementException

This commit is contained in:
Dmitry Deshevoy 2017-11-16 16:18:15 +03:00
parent 0da3ebf385
commit 4f11dc5b14
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();
}
}