Commit d59a332e authored by tsufeki's avatar tsufeki Committed by Max Kellermann

commmand: fix URI argument in playlistadd

parent 2b579aeb
ver 0.17.5 (not yet released)
* protocol:
- fix "playlistadd" with URI
ver 0.17.4 (2013/04/08)
* protocol:
......
......@@ -1579,7 +1579,7 @@ handle_playlistadd(struct client *client, G_GNUC_UNUSED int argc, char *argv[])
return COMMAND_RETURN_ERROR;
}
success = spl_append_uri(argv[1], playlist, &error);
success = spl_append_uri(uri, playlist, &error);
} else
success = addAllInToStoredPlaylist(uri, playlist, &error);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment