From e6f906b9ca9e6e148d5119bf2e9802101dc8f475 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Wed, 8 Mar 2017 17:05:55 -0600 Subject: [PATCH] [RN] Fix undefined.avatarID in ParticipantView --- .../participants/components/ParticipantView.native.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/react/features/base/participants/components/ParticipantView.native.js b/react/features/base/participants/components/ParticipantView.native.js index 2deced2c8..ed64d9598 100644 --- a/react/features/base/participants/components/ParticipantView.native.js +++ b/react/features/base/participants/components/ParticipantView.native.js @@ -163,13 +163,13 @@ function _toBoolean(value, undefinedValue) { */ function _mapStateToProps(state, ownProps) { const { participantId } = ownProps; + const participant + = getParticipantById( + state['features/base/participants'], + participantId); return { - _avatar: - getAvatarURL( - getParticipantById( - state['features/base/participants'], - participantId)), + _avatar: participant && getAvatarURL(participant), _videoTrack: getTrackByMediaTypeAndParticipant( state['features/base/tracks'],