2017-08-01 03:36:41 +08:00
|
|
|
import { check } from 'meteor/check';
|
|
|
|
|
|
|
|
import updateVoiceUser from '../modifiers/updateVoiceUser';
|
|
|
|
|
|
|
|
export default function handleVoiceUpdate({ body }, meetingId) {
|
|
|
|
const voiceUser = body;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
|
2019-08-10 06:28:49 +08:00
|
|
|
// If a person is muted we have to force them to not talking
|
|
|
|
if (voiceUser.muted) {
|
|
|
|
voiceUser.talking = false;
|
|
|
|
}
|
|
|
|
|
2017-08-01 03:36:41 +08:00
|
|
|
return updateVoiceUser(meetingId, voiceUser);
|
|
|
|
}
|