mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Clears bosh client instance on shutdown. Fixes SMACK-829.
This commit is contained in:
parent
158103c918
commit
3ffdb9befd
1 changed files with 10 additions and 0 deletions
|
@ -253,6 +253,16 @@ public class XMPPBOSHConnection extends AbstractXMPPConnection {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected void shutdown() {
|
protected void shutdown() {
|
||||||
|
|
||||||
|
if (client != null) {
|
||||||
|
try {
|
||||||
|
client.disconnect();
|
||||||
|
} catch (Exception e) {
|
||||||
|
LOGGER.log(Level.WARNING, "shutdown", e);
|
||||||
|
}
|
||||||
|
client = null;
|
||||||
|
}
|
||||||
|
|
||||||
setWasAuthenticated();
|
setWasAuthenticated();
|
||||||
sessionID = null;
|
sessionID = null;
|
||||||
done = true;
|
done = true;
|
||||||
|
|
Loading…
Reference in a new issue