aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/command.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c
index 762db37b3..48f6b8873 100644
--- a/src/command.c
+++ b/src/command.c
@@ -1013,7 +1013,14 @@ static enum command_return
handle_next(G_GNUC_UNUSED struct client *client,
G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
{
+ /* single mode is not considered when this is user who
+ * wants to change song. */
+ int single = g_playlist.queue.single;
+ g_playlist.queue.single = false;
+
nextSongInPlaylist(&g_playlist);
+
+ g_playlist.queue.single = single;
return COMMAND_RETURN_OK;
}