From 042a2cb447bd9ff39ab3904e493952787bd30924 Mon Sep 17 00:00:00 2001 From: Jaya Allamsetty Date: Wed, 15 Sep 2021 11:59:06 -0400 Subject: [PATCH] fix(filmstrip) Fix filmstrip on RN when thumbnail reordering is disabled. --- react/features/filmstrip/middleware.native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/filmstrip/middleware.native.js b/react/features/filmstrip/middleware.native.js index ed41cdb6ea..f30af89a15 100644 --- a/react/features/filmstrip/middleware.native.js +++ b/react/features/filmstrip/middleware.native.js @@ -29,7 +29,7 @@ MiddlewareRegistry.register(store => next => action => { store.dispatch(setTileViewDimensions()); break; case PARTICIPANT_JOINED: { - updateRemoteParticipants(store); + updateRemoteParticipants(store, action.participant?.id); break; } }