From ef5668b85f6bf79fdd01ce98a010d593d2a5ea11 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 31 May 2024 15:18:09 +0200 Subject: Hard coded stream url works --- src/audio/rodio.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs index 3dffa5e..f3f0ffd 100644 --- a/src/audio/rodio.rs +++ b/src/audio/rodio.rs @@ -15,7 +15,9 @@ pub struct Rodio {} impl Rodio { pub async fn play(&self, url: &str) { let reader = StreamDownload::new_http( - url.parse().unwrap(), + "https://ice6.somafm.com/groovesalad-256-mp3" + .parse() + .unwrap(), TempStorageProvider::new(), Settings::default(), ) -- cgit v1.3.1