From 58deb3413502348998158b6a2a4bdb59f923be2d Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Thu, 5 Feb 2026 20:46:10 +0100 Subject: [PATCH] Add sink twice to second PlayingSound push cuz rust is dumb shit and doesnt understand im already returning --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 981e2de..f28945a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -257,7 +257,8 @@ fn play_sound(file_path: String, app_state: &mut AppState) { app_state.currently_playing.push(PlayingSound { file_path: file_path.clone(), length, - sink + sink, + sink // sink twice cuz rust is dumb shit and doesnt understand im already returning }) }