diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-13 18:46:38 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-13 18:46:38 +0000 |
commit | 965e6edcf18948ea6971040495e2121a326aa11b (patch) | |
tree | 07d401bd1726b84d73ccba099b677067a05730d4 /src/command.c | |
parent | 8c484eeccfaafd2d5eaf7cd77842581004957a8a (diff) | |
download | mpd-965e6edcf18948ea6971040495e2121a326aa11b.tar.gz mpd-965e6edcf18948ea6971040495e2121a326aa11b.tar.xz mpd-965e6edcf18948ea6971040495e2121a326aa11b.zip |
redimentary addition of url's to playlist
git-svn-id: https://svn.musicpd.org/mpd/trunk@1000 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/command.c b/src/command.c index 9a7072c43..bf77dc8e7 100644 --- a/src/command.c +++ b/src/command.c @@ -237,10 +237,13 @@ int handleClose(FILE * fp, unsigned int * permission, int argArrayLength, int handleAdd(FILE * fp, unsigned int * permission, int argArrayLength, char ** argArray) { - char * directory = NULL; + char * path = NULL; - if(argArrayLength == 2) directory = argArray[1]; - return addAllIn(fp,directory); + if(argArrayLength == 2) { + path = argArray[1]; + if(isRemoteUrl(path)) return addToPlaylist(fp,path); + } + return addAllIn(fp,path); } int handleDelete(FILE * fp, unsigned int * permission, int argArrayLength, |