aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/PlaylistCommands.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-10-25 23:49:35 +0200
committerMax Kellermann <max@duempel.org>2014-10-25 23:50:47 +0200
commit575fbad254a1ce67530bf2aedc9852c89c072c3f (patch)
tree612ed62b05b787ee737baaca7c87d99a3bbae7cc /src/command/PlaylistCommands.cxx
parentfa0aa91bf9e412e121d538632cbce3cce08ea0e0 (diff)
downloadmpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.tar.gz
mpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.tar.xz
mpd-575fbad254a1ce67530bf2aedc9852c89c072c3f.zip
AllCommands: "commands" returns playlist commands only if playlist_directory configured
Diffstat (limited to 'src/command/PlaylistCommands.cxx')
-rw-r--r--src/command/PlaylistCommands.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/command/PlaylistCommands.cxx b/src/command/PlaylistCommands.cxx
index c2b18064c..593eab865 100644
--- a/src/command/PlaylistCommands.cxx
+++ b/src/command/PlaylistCommands.cxx
@@ -35,9 +35,17 @@
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
#include "ls.hxx"
+#include "Mapper.hxx"
+#include "fs/AllocatedPath.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
+bool
+playlist_commands_available()
+{
+ return !map_spl_path().IsNull();
+}
+
static void
print_spl_list(Client &client, const PlaylistVector &list)
{