Clears bosh client instance on shutdown. Fixes SMACK-829.

This commit is contained in:
damencho 2018-08-23 16:22:25 -05:00
parent 158103c918
commit 3ffdb9befd
1 changed files with 10 additions and 0 deletions

View File

@ -253,6 +253,16 @@ public class XMPPBOSHConnection extends AbstractXMPPConnection {
*/
@Override
protected void shutdown() {
if (client != null) {
try {
client.disconnect();
} catch (Exception e) {
LOGGER.log(Level.WARNING, "shutdown", e);
}
client = null;
}
setWasAuthenticated();
sessionID = null;
done = true;