diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio/rodio.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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(), ) |
