call: Restore mute_on_join behaviour
This commit is contained in:
parent
6f839a1b48
commit
52119ca203
1 changed files with 7 additions and 4 deletions
|
@ -1,4 +1,7 @@
|
||||||
use crate::participant::{LocalParticipant, ParticipantLocation, RemoteParticipant};
|
use crate::{
|
||||||
|
call_settings::CallSettings,
|
||||||
|
participant::{LocalParticipant, ParticipantLocation, RemoteParticipant},
|
||||||
|
};
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
use audio::{Audio, Sound};
|
use audio::{Audio, Sound};
|
||||||
use client::{
|
use client::{
|
||||||
|
@ -18,6 +21,7 @@ use live_kit_client::{
|
||||||
};
|
};
|
||||||
use postage::{sink::Sink, stream::Stream, watch};
|
use postage::{sink::Sink, stream::Stream, watch};
|
||||||
use project::Project;
|
use project::Project;
|
||||||
|
use settings::Settings as _;
|
||||||
use std::{future::Future, mem, sync::Arc, time::Duration};
|
use std::{future::Future, mem, sync::Arc, time::Duration};
|
||||||
use util::{post_inc, ResultExt, TryFutureExt};
|
use util::{post_inc, ResultExt, TryFutureExt};
|
||||||
|
|
||||||
|
@ -328,10 +332,9 @@ impl Room {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn mute_on_join(_cx: &AppContext) -> bool {
|
pub fn mute_on_join(cx: &AppContext) -> bool {
|
||||||
// todo!() po: This should be uncommented, though then unmuting does not work
|
// todo!() po: This should be uncommented, though then unmuting does not work
|
||||||
false
|
CallSettings::get_global(cx).mute_on_join || client::IMPERSONATE_LOGIN.is_some()
|
||||||
//CallSettings::get_global(cx).mute_on_join || client::IMPERSONATE_LOGIN.is_some()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn from_join_response(
|
fn from_join_response(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue