diff options
author | Michael Olson <mwolson@gnu.org> | 2007-07-23 01:59:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2007-07-23 01:59:00 +0000 |
commit | 0c4c096ff27aa9dcd54a7510e7eae97585088639 (patch) | |
tree | 335e4e15744fc6c5b3fa9b1665a3a8569da30b72 | |
parent | 48f7fad6239b112fd77a275102c8c0f9babc867f (diff) |
emms-player-mpd: Fix bug with selecting an individual URL track to play from a streamlist
darcs-hash:20070723015956-1bfb2-e9fdefb2e8a6897384a6d8f1ca8ccb5016415631.gz
-rw-r--r-- | emms-player-mpd.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el index 1bc2251..b80f76d 100644 --- a/emms-player-mpd.el +++ b/emms-player-mpd.el @@ -906,8 +906,7 @@ buffer get out-of-sync for some reason." "Starts a process playing TRACK." (interactive) (if (and emms-player-mpd-sync-playlist - (not (memq (emms-track-get track 'type) '(streamlist playlist))) - (not (string-match "\\`http://" (emms-track-get track 'name)))) + (not (memq (emms-track-get track 'type) '(streamlist playlist)))) (emms-player-mpd-start-and-sync) (emms-player-mpd-clear) ;; if we have loaded the item successfully, play it |