mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-04-22 06:02: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:
parent
644550a302
commit
977092171e
1 changed files with 3 additions and 2 deletions
|
@ -121,8 +121,9 @@ struct ParticipantInfos
|
||||||
&& audioModeratorMuted == other.audioModeratorMuted && avatar == other.avatar
|
&& audioModeratorMuted == other.audioModeratorMuted && avatar == other.avatar
|
||||||
&& bestName == other.bestName && isContact == other.isContact
|
&& bestName == other.bestName && isContact == other.isContact
|
||||||
&& islocal == other.islocal && videoMuted == other.videoMuted
|
&& islocal == other.islocal && videoMuted == other.videoMuted
|
||||||
&& handRaised == other.handRaised && voiceActivity == other.voiceActivity
|
&& isModerator == other.isModerator && voiceActivity == other.voiceActivity
|
||||||
&& isRecording == other.isRecording;
|
&& handRaised == other.handRaised && isRecording == other.isRecording
|
||||||
|
&& device == other.device;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue