Reuse previously-obtained call object

This commit is contained in:
Joseph T. Lyons 2023-07-20 16:21:21 -04:00
parent 6095525b56
commit 719c56734a

View file

@ -65,7 +65,7 @@ pub fn toggle_screen_sharing(_: &ToggleScreenSharing, cx: &mut AppContext) {
pub fn toggle_mute(_: &ToggleMute, cx: &mut AppContext) {
let call = ActiveCall::global(cx).read(cx);
if let Some(room) = ActiveCall::global(cx).read(cx).room().cloned() {
if let Some(room) = call.room().cloned() {
let client = call.client();
room.update(cx, |room, cx| {
if room.is_muted() {