>From 5a754fc9de11df40eb58436542597e62e1762858 Mon Sep 17 00:00:00 2001 From: Morgan Veyret Date: Wed, 22 Oct 2008 17:18:22 +0200 Subject: [PATCH] Fixed mpd-toggle-pause command to work with mpd-get-status. --- contrib/mpd.lisp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/contrib/mpd.lisp b/contrib/mpd.lisp index 09ec699..7907d3b 100644 --- a/contrib/mpd.lisp +++ b/contrib/mpd.lisp @@ -470,6 +470,7 @@ Volume (mpd-send-command "kill")) (defcommand mpd-toggle-pause () () + (mpd-update-status) (cond ((equal (mpd-get-status) "Playing") (mpd-send-command "pause 1")) -- 1.5.5.1