mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Fix memory leak in MUC-light
Basically the same fix as for MUC in
965cbcc979
This commit is contained in:
parent
4377e39b5f
commit
a4ae941a7c
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ public class MultiUserChatLight {
|
|||
|
||||
try {
|
||||
connection.createStanzaCollectorAndSend(createMUCLightIQ).nextResultOrThrow();
|
||||
} catch (InterruptedException | NoResponseException | XMPPErrorException e) {
|
||||
} catch (NotConnectedException | InterruptedException | NoResponseException | XMPPErrorException e) {
|
||||
removeConnectionCallbacks();
|
||||
throw e;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue