From b436e4085175f179752dbbfb3ac35cc3d7300746 Mon Sep 17 00:00:00 2001 From: Henrik Friedrichsen Date: Sat, 27 Feb 2021 13:23:30 +0100 Subject: [PATCH] Fix display of PlayNext command fixes #445 --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.rs b/src/command.rs index ab2e8c9..962c285 100644 --- a/src/command.rs +++ b/src/command.rs @@ -147,7 +147,7 @@ impl fmt::Display for Command { Command::Next => "next".to_string(), Command::Clear => "clear".to_string(), Command::Queue => "queue".to_string(), - Command::PlayNext => "play next".to_string(), + Command::PlayNext => "playnext".to_string(), Command::Play => "play".to_string(), Command::UpdateLibrary => "update".to_string(), Command::Save => "save".to_string(),