muc: do check for equality twice

We already performed the presence.getFrom().equals(myRoomJID) check
and saved its result. No need to do it again.
This commit is contained in:
Florian Schmaus 2020-04-16 21:38:55 +02:00
parent e2e228fc93
commit c519dd1213
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class MultiUserChat {
// Fire events according to the received presence code
checkPresenceCode(
mucUser.getStatus(),
presence.getFrom().equals(myRoomJID),
isUserStatusModification,
mucUser,
from);
} else {