diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c index 529f3ac1d..27d34c0a3 100644 --- a/src/command.c +++ b/src/command.c @@ -388,7 +388,7 @@ handle_play(struct client *client, int argc, char *argv[]) if (argc == 2 && !check_int(client, &song, argv[1], need_positive)) return COMMAND_RETURN_ERROR; - result = playPlaylist(song, 0); + result = playPlaylist(song); return print_playlist_result(client, result); } @@ -401,7 +401,7 @@ handle_playid(struct client *client, int argc, char *argv[]) if (argc == 2 && !check_int(client, &id, argv[1], need_positive)) return COMMAND_RETURN_ERROR; - result = playPlaylistById(id, 0); + result = playPlaylistById(id); return print_playlist_result(client, result); } |