fmt
This commit is contained in:
parent
b828a74ad6
commit
dbd95e35cf
4 changed files with 17 additions and 17 deletions
|
@ -423,9 +423,7 @@ impl Room {
|
|||
.unwrap()
|
||||
.into_iter()
|
||||
.filter(|track| track.publisher_id() == publisher_id)
|
||||
.map(|_track| {
|
||||
Arc::new(RemoteTrackPublication {})
|
||||
})
|
||||
.map(|_track| Arc::new(RemoteTrackPublication {}))
|
||||
.collect()
|
||||
}
|
||||
|
||||
|
@ -495,7 +493,7 @@ impl Drop for Room {
|
|||
pub struct LocalTrackPublication;
|
||||
|
||||
impl LocalTrackPublication {
|
||||
pub fn set_mute(&self, _mute: bool) -> impl Future<Output = Result<()>> {
|
||||
pub fn set_mute(&self, _mute: bool) -> impl Future<Output = Result<()>> {
|
||||
async { Ok(()) }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue