From: Derk-Jan Hartman Date: Mon, 12 Sep 2005 21:41:39 +0000 (+0000) Subject: * Prevent the autoplay function from playing the Shoutcast url for the xmllist. The... X-Git-Tag: 0.8.4~527 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=437b3638238ca7d73b879ef909958c2522ec9b3f;p=vlc * Prevent the autoplay function from playing the Shoutcast url for the xmllist. The SD modules already does this by itself. (fixes #8) --- diff --git a/src/playlist/playlist.c b/src/playlist/playlist.c index f30da9b841..420ea4caac 100644 --- a/src/playlist/playlist.c +++ b/src/playlist/playlist.c @@ -412,6 +412,7 @@ int playlist_vaControl( playlist_t * p_playlist, int i_query, va_list args ) case PLAYLIST_AUTOPLAY: p_playlist->status.i_status = PLAYLIST_RUNNING; + p_playlist->status.p_node = p_playlist->p_general; p_playlist->request.b_request = VLC_FALSE; break;