|
@@ -641,7 +641,6 @@ function _participantJoinedOrUpdated(store: IStore, next: Function, action: any)
|
641
|
641
|
// Send an external update of the local participant's raised hand state
|
642
|
642
|
// if a new raised hand state is defined in the action.
|
643
|
643
|
if (typeof raisedHandTimestamp !== 'undefined') {
|
644
|
|
-
|
645
|
644
|
if (local) {
|
646
|
645
|
const { conference } = getState()['features/base/conference'];
|
647
|
646
|
const rHand = parseInt(raisedHandTimestamp, 10);
|
|
@@ -691,14 +690,6 @@ function _participantJoinedOrUpdated(store: IStore, next: Function, action: any)
|
691
|
690
|
}
|
692
|
691
|
}
|
693
|
692
|
|
694
|
|
- // Notify external listeners of potential avatarURL changes.
|
695
|
|
- if (typeof APP === 'object') {
|
696
|
|
- const currentKnownId = local ? APP.conference.getMyUserId() : id;
|
697
|
|
-
|
698
|
|
- // Force update of local video getting a new id.
|
699
|
|
- APP.UI.refreshAvatarDisplay(currentKnownId);
|
700
|
|
- }
|
701
|
|
-
|
702
|
693
|
return result;
|
703
|
694
|
}
|
704
|
695
|
|