diff options
-rw-r--r-- | emms-source-playlist.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emms-source-playlist.el b/emms-source-playlist.el index 1a381b1..5d5bd8d 100644 --- a/emms-source-playlist.el +++ b/emms-source-playlist.el @@ -245,7 +245,7 @@ OUT should be the buffer where tracks are stored in the native EMMS format." (mapcar (lambda (file) (if (string-match "\\`http://" file) (emms-track 'url file) - (emms-track 'file (expand-file-name file)))) + (emms-track 'file file))) (emms-source-playlist-m3u-files))) (defun emms-source-playlist-m3u-files () @@ -312,7 +312,7 @@ OUT should be the buffer where tracks are stored in m3u format." (mapcar (lambda (file) (if (string-match "\\`http://" file) (emms-track 'url file) - (emms-track 'file (expand-file-name file)))) + (emms-track 'file file))) (emms-source-playlist-pls-files))) (defun emms-source-playlist-pls-files () |