diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-07 12:11:57 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-07 12:11:57 +0000 |
commit | ae44b7dae5878a1484243b89d14317d2dab5fdde (patch) | |
tree | b122ffcb1ad6dd3a9c5ea60e0570ea5884ca3b2f /src/command.c | |
parent | 08603344884138660d750df2c473a7cf34aab782 (diff) | |
download | mpd-ae44b7dae5878a1484243b89d14317d2dab5fdde.tar.gz mpd-ae44b7dae5878a1484243b89d14317d2dab5fdde.tar.xz mpd-ae44b7dae5878a1484243b89d14317d2dab5fdde.zip |
potential bugfixes for handling metadata in player/decoder
git-svn-id: https://svn.musicpd.org/mpd/trunk@1369 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index 72742e993..1ab3b789a 100644 --- a/src/command.c +++ b/src/command.c @@ -191,7 +191,8 @@ int commandStatus(FILE * fp, unsigned int * permission, int argArrayLength, int updateJobId; int song; - playPlaylistIfPlayerStopped(); + /*syncPlayerAndPlaylist();*/ + playPlaylistIfPlayerStopped(); switch(getPlayerState()) { case PLAYER_STATE_STOP: state = strdup(COMMAND_STOP); |