Compare commits

...

2 Commits

Author SHA1 Message Date
Дамян Минков
f515617140 debug: Fix lint errors. 2021-09-23 22:04:38 -05:00
Дамян Минков
b66468b8c4 debug: Do not merge, debugging raise hand. 2021-09-23 21:53:47 -05:00

View File

@@ -58,6 +58,7 @@ import {
getRemoteParticipants,
isLocalParticipantModerator
} from './functions';
import logger from './logger';
import { PARTICIPANT_JOINED_FILE, PARTICIPANT_LEFT_FILE } from './sounds';
declare var APP: Object;
@@ -462,6 +463,10 @@ function _participantJoinedOrUpdated(store, next, action) {
// Send raisedHand signalling only if there is a change
if (conference && raisedHand !== getLocalParticipant(getState()).raisedHand) {
const e = new Error();
logger.info(`Will send raised hand ${e.stack}`);
conference.setLocalParticipantProperty('raisedHand', raisedHand);
}
}