diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-31 15:30:20 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-31 15:32:26 +0200 |
| commit | ea0acfda17f94b88fa71218be7b3cd4736736698 (patch) | |
| tree | 4e29392c80ed37bc566bac9178047ee3756b876d /src/audio | |
| parent | ef5668b85f6bf79fdd01ce98a010d593d2a5ea11 (diff) | |
Finalize rodio backend implementation
Diffstat (limited to 'src/audio')
| -rw-r--r-- | src/audio/rodio.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs index f3f0ffd..3dffa5e 100644 --- a/src/audio/rodio.rs +++ b/src/audio/rodio.rs @@ -15,9 +15,7 @@ pub struct Rodio {} impl Rodio { pub async fn play(&self, url: &str) { let reader = StreamDownload::new_http( - "https://ice6.somafm.com/groovesalad-256-mp3" - .parse() - .unwrap(), + url.parse().unwrap(), TempStorageProvider::new(), Settings::default(), ) |
