command: fix loadlist command

A simple inverted condition prevented it from working properly.

Also, make sure that playlist is played from beginning when the playlist
is replaced.
This commit is contained in:
wm4 2013-04-10 17:16:49 +02:00
parent 593aa1834b
commit 889cbc21b1
1 changed files with 5 additions and 3 deletions

View File

@ -1945,14 +1945,16 @@ void run_command(MPContext *mpctx, mp_cmd_t *cmd)
char *filename = cmd->args[0].v.s;
bool append = cmd->args[1].v.i;
struct playlist *pl = playlist_parse_file(filename);
if (!pl) {
if (pl) {
if (!append)
playlist_clear(mpctx->playlist);
playlist_transfer_entries(mpctx->playlist, pl);
talloc_free(pl);
if (!append)
mpctx->stop_play = PT_NEXT_ENTRY;
if (!append) {
mpctx->playlist->current = mpctx->playlist->first;
mpctx->stop_play = PT_CURRENT_ENTRY;
}
} else {
mp_tmsg(MSGT_CPLAYER, MSGL_ERR,
"\nUnable to load playlist %s.\n", filename);