-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a 'waiting for video' state to media tiles #752
Conversation
This will show if the call is waiting for media to connect (in practice doesn't actually seem to happen all that often) but also show if the media connection is lost, with the js-sdk change. Requires matrix-org/matrix-js-sdk#2880 Fixes: #669
src/room/InCallView.tsx
Outdated
@@ -231,11 +292,19 @@ export function InCallView({ | |||
focused: true, | |||
isLocal: screenshareFeed.isLocal(), | |||
presenter: false, | |||
connectionState: ConnectionState.CONNECTED, // by definition since the screen shares arrived on the same connection |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if the connection dropped later?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True - have passed through the connection state of the relevant user (although we don't display it for screenshares anyway).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-authored-by: Robin <robin@robin.town>
This will show if the call is waiting for media to connect (in practice doesn't actually seem to happen all that often) but also show if the media connection is lost, with the js-sdk change.
Requires matrix-org/matrix-js-sdk#2880
Fixes: #669