Merge pull request #266 from jitsi/4.3

Disconnect BOSH client on shutdown and clear client instance.
This commit is contained in:
Florian Schmaus 2018-08-30 14:36:52 +02:00 committed by GitHub
commit e7372b05ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;