From 67625e9ae3513af194dcc0790fbcd9fbf2cdbfc5 Mon Sep 17 00:00:00 2001 From: talwat <83217276+talwat@users.noreply.github.com> Date: Sat, 28 Sep 2024 02:01:54 +0200 Subject: [PATCH] chore: increase timeout --- src/player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.rs b/src/player.rs index 54cbffd..c5b5015 100644 --- a/src/player.rs +++ b/src/player.rs @@ -36,7 +36,7 @@ pub enum Messages { Pause, } -const TIMEOUT: Duration = Duration::from_secs(3); +const TIMEOUT: Duration = Duration::from_secs(8); /// The amount of songs to buffer up. const BUFFER_SIZE: usize = 5;