Closed thyal closed 1 week ago
Latest commit: eaacf54e880fba910c94733ca4e6b7a69ca05648
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Description
Show a placeholder (avatar) when there no stream for a participant in the video grid. Kind of an edge case since
isVideoEnabled
needs to be true as well, but we had a report for this from a customer.Summary:
Related Issue:
Testing
I couldn't reproduce this just by blocking media permissions (
isVideoEnabled
would befalse
). I created a patch to verify though, and this can be used to test:tmp_no_stream.patch
, and apply itgit apply tmp_no_stream.patch
diff --git a/packages/core/src/redux/slices/remoteParticipants.ts b/packages/core/src/redux/slices/remoteParticipants.ts index 3d1d9de9..2a7a835a 100644 --- a/packages/core/src/redux/slices/remoteParticipants.ts +++ b/packages/core/src/redux/slices/remoteParticipants.ts @@ -25,7 +25,8 @@ function createRemoteParticipant(client: SignalClient, newJoiner = false): Remot return { ...rest, stream: null,
yarn build && yarn dev
Screenshots/GIFs (if applicable)
before
after
Checklist
Additional Information