diff options
| author | Yuval Adam <_@yuv.al> | 2024-07-12 12:08:46 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-07-12 12:08:46 +0200 |
| commit | 92b06281306ad25c0609bb69dbb8f5f6061b5bf4 (patch) | |
| tree | c837eca47e2bdd020948eeb25dfb0dc8f635278f /src/audio | |
| parent | 0a5757e76a731eaac67f87b62f3dc218fc471222 (diff) | |
Cleanup song title output
Diffstat (limited to 'src/audio')
| -rw-r--r-- | src/audio/rodio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs index 49ebe40..d1a5d0d 100644 --- a/src/audio/rodio.rs +++ b/src/audio/rodio.rs @@ -50,7 +50,7 @@ impl Rodio { |metadata| { if let Ok(md) = metadata { if let Some(tr) = md.stream_title() { - println!(" {tr}"); + println!("{tr}"); } } }, |
