Fix clippy lints that don't currently appear in CI (#27944)

I may have a newer version of clippy than CI. Also removes some unused
code in `livekit_client.rs`

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-04-02 12:00:16 -06:00 committed by GitHub
parent f8092bf0d2
commit 142f9917d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 37 deletions

View file

@ -19,7 +19,7 @@ use livekit_client::{self as livekit, TrackSid};
use postage::{sink::Sink, stream::Stream, watch};
use project::Project;
use settings::Settings as _;
use std::{any::Any, future::Future, mem, sync::Arc, time::Duration};
use std::{any::Any, future::Future, mem, rc::Rc, sync::Arc, time::Duration};
use util::{ResultExt, TryFutureExt, post_inc};
pub const RECONNECT_TIMEOUT: Duration = Duration::from_secs(30);
@ -1594,7 +1594,7 @@ fn spawn_room_connection(
let muted_by_user = Room::mute_on_join(cx);
this.live_kit = Some(LiveKitRoom {
room: Arc::new(room),
room: Rc::new(room),
screen_track: LocalTrack::None,
microphone_track: LocalTrack::None,
next_publish_id: 0,
@ -1617,7 +1617,7 @@ fn spawn_room_connection(
}
struct LiveKitRoom {
room: Arc<livekit::Room>,
room: Rc<livekit::Room>,
screen_track: LocalTrack,
microphone_track: LocalTrack,
/// Tracks whether we're currently in a muted state due to auto-mute from deafening or manual mute performed by user.