diff --git a/src/trx-core/src/rig/mod.rs b/src/trx-core/src/rig/mod.rs index e34dfc9..24bf499 100644 --- a/src/trx-core/src/rig/mod.rs +++ b/src/trx-core/src/rig/mod.rs @@ -75,7 +75,10 @@ pub trait AudioSource: Send + Sync { /// Subscribe to PCM from a specific backend channel when available. /// Channel `0` is always the primary channel. - fn subscribe_pcm_channel(&self, channel_idx: usize) -> tokio::sync::broadcast::Receiver> { + fn subscribe_pcm_channel( + &self, + channel_idx: usize, + ) -> tokio::sync::broadcast::Receiver> { if channel_idx == 0 { self.subscribe_pcm() } else {