Commit c8d3f4ae authored by Erwan Tulou's avatar Erwan Tulou

skins2: uri-encoded mrl required for drag&drop

parent d2bfbdc7
......@@ -28,27 +28,31 @@
#include <vlc_common.h>
#include <vlc_playlist.h>
#include <vlc_url.h>
#include "cmd_add_item.hpp"
void CmdAddItem::execute()
{
playlist_t *pPlaylist = getIntf()->p_sys->p_playlist;
if( pPlaylist == NULL )
{
if( !pPlaylist )
return;
char* psz_uri = make_URI( m_name.c_str() );
if( !psz_uri )
return;
}
if( m_playNow )
{
// Enqueue and play the item
playlist_Add( pPlaylist, m_name.c_str(), NULL,
playlist_Add( pPlaylist, psz_uri, NULL,
PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true,
false );
}
else
{
// Enqueue the item only
playlist_Add( pPlaylist, m_name.c_str(), NULL,
playlist_Add( pPlaylist, psz_uri, NULL,
PLAYLIST_APPEND, PLAYLIST_END, true, false );
}
free( psz_uri );
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment