mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 02:22:05 +01:00
Merge branch '4.4'
This commit is contained in:
commit
5455cfb3d2
2 changed files with 8 additions and 1 deletions
|
@ -1,5 +1,12 @@
|
|||
# Smack Changelog
|
||||
|
||||
# 4.4.6 -- 2022-06-29
|
||||
|
||||
### Bug
|
||||
|
||||
- [SMACK-926](https://igniterealtime.atlassian.net/browse/SMACK-926) Memory-leak in ServiceDiscoveryManager
|
||||
- [SMACK-925](https://igniterealtime.atlassian.net/browse/SMACK-925) MultiUserChat Presence interceptors do not intercept
|
||||
|
||||
# 4.4.5 -- 2022-03-02
|
||||
|
||||
### Bug
|
||||
|
|
|
@ -1154,7 +1154,7 @@ public class MultiUserChat {
|
|||
if (!removed) return;
|
||||
int currentCount = presenceInterceptorCount.decrementAndGet();
|
||||
if (currentCount == 0) {
|
||||
connection.removePresenceInterceptor(presenceInterceptor);
|
||||
connection.removePresenceInterceptor(this.presenceInterceptor);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue