mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
Fix local tile showing as unmuted when you join muted
This commit is contained in:
parent
eb500ed88e
commit
510d55d88a
@ -140,7 +140,7 @@ export const VideoTile = React.forwardRef<HTMLDivElement, Props>(
|
||||
</div>
|
||||
) : (
|
||||
<div className={classNames(styles.infoBubble, styles.memberName)}>
|
||||
{microphoneMuted ? <MicMutedIcon /> : <MicIcon />}
|
||||
{microphoneMuted === false ? <MicIcon /> : <MicMutedIcon />}
|
||||
<span title={displayName}>{displayName}</span>
|
||||
{showConnectionStats && (
|
||||
<ConnectionQualityIndicator participant={sfuParticipant} />
|
||||
|
Loading…
Reference in New Issue
Block a user