problem with 'in_enqueue' - http interface
Posted: 27 Mar 2010 21:49
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
to
and now it works as expected, but maybe it should be fixed somewhere in the code.
from
Code: Select all
<vlc id="if" param1="command value 'in_enqueue' strcmp 0 =" />
<vlc id="rpn" param1="input value dup stripslashes playlist_add" />
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" />