diff options
author | Max Kellermann <max@duempel.org> | 2015-10-27 20:35:40 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-10-27 20:35:40 +0100 |
commit | 8acf996d90e3be551ebffc98de7248a5bee5b69c (patch) | |
tree | 9e38e0b05fa274814c0bbc112bfcef38ecdd1137 /src/command/AllCommands.cxx | |
parent | 15e432204e62dd5a1c873af13a679195b9645b0c (diff) | |
download | mpd-8acf996d90e3be551ebffc98de7248a5bee5b69c.tar.gz mpd-8acf996d90e3be551ebffc98de7248a5bee5b69c.tar.xz mpd-8acf996d90e3be551ebffc98de7248a5bee5b69c.zip |
command/queue: add range parameter to plchanges and plchangesposid
Diffstat (limited to '')
-rw-r--r-- | src/command/AllCommands.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx index 8e8865ff3..87ed7a1dc 100644 --- a/src/command/AllCommands.cxx +++ b/src/command/AllCommands.cxx @@ -148,8 +148,8 @@ static constexpr struct command commands[] = { { "playlistinfo", PERMISSION_READ, 0, 1, handle_playlistinfo }, { "playlistmove", PERMISSION_CONTROL, 3, 3, handle_playlistmove }, { "playlistsearch", PERMISSION_READ, 2, -1, handle_playlistsearch }, - { "plchanges", PERMISSION_READ, 1, 1, handle_plchanges }, - { "plchangesposid", PERMISSION_READ, 1, 1, handle_plchangesposid }, + { "plchanges", PERMISSION_READ, 1, 2, handle_plchanges }, + { "plchangesposid", PERMISSION_READ, 1, 2, handle_plchangesposid }, { "previous", PERMISSION_CONTROL, 0, 0, handle_previous }, { "prio", PERMISSION_CONTROL, 2, -1, handle_prio }, { "prioid", PERMISSION_CONTROL, 2, -1, handle_prioid }, |