diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index 568997cc7..1d26acd6b 100644 --- a/src/command.c +++ b/src/command.c @@ -809,7 +809,8 @@ handle_load(struct client *client, G_GNUC_UNUSED int argc, char *argv[]) GError *error = NULL; return playlist_load_spl(&g_playlist, client->player_control, - argv[1], &error) + argv[1], 0, G_MAXUINT, + &error) ? COMMAND_RETURN_OK : print_error(client, error); } |