[muc] Fix removal of the MUC's main presence interceptor

On dinamically remove the last existed presence interceptor
we also should to remove the MUC's main presence interceptor from the connection.

Fixes: 60fee7b ("[muc] Fix Presence interceptors")
This commit is contained in:
Andrey Volykhin 2022-08-30 07:05:16 +00:00
parent 8c359eed16
commit fbd5761296
1 changed files with 1 additions and 1 deletions

View File

@ -1133,7 +1133,7 @@ public class MultiUserChat {
if (!removed) return;
int currentCount = presenceInterceptorCount.decrementAndGet();
if (currentCount == 0) {
connection.removePresenceInterceptor(presenceInterceptor);
connection.removePresenceInterceptor(this.presenceInterceptor);
}
}