From ca85d4c369bda2a52d6ee739533b55a2c7224ede Mon Sep 17 00:00:00 2001 From: arabian Date: Wed, 28 Jan 2026 02:28:23 +0300 Subject: [PATCH] refactor: remove redundant device linking in play method --- src/types/audio_player.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types/audio_player.rs b/src/types/audio_player.rs index 8f64fe3..40e7337 100644 --- a/src/types/audio_player.rs +++ b/src/types/audio_player.rs @@ -289,8 +289,6 @@ impl AudioPlayer { self.tracks.insert(id, sound); - self.link_devices().await?; - Ok(id) } Err(err) => Err(err.into()),