Skip to content
Snippets Groups Projects
Commit 97709217 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

callparticipantsmodel: fix participant equality

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

Change-Id: Ic00a7836b181bf9aa9c9d793720323bc2247196a
parent 644550a3
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment