summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/music.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/music.rs b/src/music.rs
index 90cd276..0009479 100644
--- a/src/music.rs
+++ b/src/music.rs
@@ -6,7 +6,7 @@ pub struct Player {
impl Player {
pub fn play(&mut self) -> Result<(), &'static str> {
- match std::process::Command::new("mpv").arg("https://www.youtube.com/watch?v=TdWd7Znz00Q").arg("--no-video").stdin(std::process::Stdio::null()).spawn() {
+ match std::process::Command::new("mpv").arg("https://www.youtube.com/watch?v=3bNITQR4Uso").arg("--no-video").stdin(std::process::Stdio::null()).spawn() {
Ok(child) => {
self.player = Some(child);
Ok(())