Merge branch 'td/typo' into 'main'

chore: fix video muted updates for local stream

See merge request famedly/company/frontend/famedlysdk!1126
This commit is contained in:
Nicolas Werner 2022-09-09 10:09:26 +00:00
commit 94397e3cb9
1 changed files with 1 additions and 1 deletions

View File

@ -1033,7 +1033,7 @@ class GroupCall {
call.setMicrophoneMuted(audioMuted); call.setMicrophoneMuted(audioMuted);
} }
final videoMuted = localUserMediaStream?.isAudioMuted() ?? true; final videoMuted = localUserMediaStream?.isVideoMuted() ?? true;
if (call.localUserMediaStream != null && if (call.localUserMediaStream != null &&
call.isLocalVideoMuted != videoMuted) { call.isLocalVideoMuted != videoMuted) {