From 08415933db8ede1ec27cb43654bc6fffdbd6ad93 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Thu, 24 Jul 2014 19:30:24 +0200 Subject: command: append entries to the end of the playlist with loadlist append Currently entries are added after the current playlist element. This is kinda confusing, more so given that "loadfile append" appends at the end of the playlist. --- player/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') diff --git a/player/command.c b/player/command.c index 5e446265ae..2bcb4bcd0c 100644 --- a/player/command.c +++ b/player/command.c @@ -3624,7 +3624,7 @@ int run_command(MPContext *mpctx, mp_cmd_t *cmd) if (pl) { if (!append) playlist_clear(mpctx->playlist); - playlist_transfer_entries(mpctx->playlist, pl); + playlist_append_entries(mpctx->playlist, pl); talloc_free(pl); if (!append && mpctx->playlist->first) { -- cgit v1.2.3