fix toggle command

This commit is contained in:
Andrzej Rybczak
2010-01-03 16:21:56 +01:00
parent e86e815787
commit 895c9177d5
2 changed files with 7 additions and 1 deletions

View File

@@ -424,7 +424,7 @@ void Connection::Toggle()
if (isPlaying())
mpd_send_toggle_pause(itsConnection);
else
mpd_send_toggle_pause(itsConnection);
mpd_send_play(itsConnection);
}
}