1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-04-21 21:52:03 +02:00

callparticipantsmodel: fix participant equality

Else, changing the moderator state of a participant doesn't
refresh the controls

Change-Id: Ic00a7836b181bf9aa9c9d793720323bc2247196a
This commit is contained in:
Sébastien Blin 2023-02-03 15:54:26 -05:00
parent 644550a302
commit 977092171e

View file

@ -121,8 +121,9 @@ struct ParticipantInfos
&& audioModeratorMuted == other.audioModeratorMuted && avatar == other.avatar
&& bestName == other.bestName && isContact == other.isContact
&& islocal == other.islocal && videoMuted == other.videoMuted
&& handRaised == other.handRaised && voiceActivity == other.voiceActivity
&& isRecording == other.isRecording;
&& isModerator == other.isModerator && voiceActivity == other.voiceActivity
&& handRaised == other.handRaised && isRecording == other.isRecording
&& device == other.device;
}
};