Page 1 of 1

problem with 'in_enqueue' - http interface

Posted: 27 Mar 2010 21:49
by Jerry
something is wrong when I'm trying to add new item to an empty playlist through http interface using in_enqueue command. As a workaround I changed following lines in status.xml:
from

Code: Select all

<vlc id="if" param1="command value 'in_enqueue' strcmp 0 =" /> <vlc id="rpn" param1="input value dup stripslashes playlist_add" />
to

Code: Select all

<vlc id="if" param1="command value 'in_enqueue' strcmp 0 =" /> <vlc id="rpn" param1="input value dup stripslashes playlist_add vlc_play vlc_stop" />
and now it works as expected, but maybe it should be fixed somewhere in the code.