Commit c8d3f4ae authored by Erwan Tulou's avatar Erwan Tulou

skins2: uri-encoded mrl required for drag&drop

parent d2bfbdc7
...@@ -28,27 +28,31 @@ ...@@ -28,27 +28,31 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_playlist.h> #include <vlc_playlist.h>
#include <vlc_url.h>
#include "cmd_add_item.hpp" #include "cmd_add_item.hpp"
void CmdAddItem::execute() void CmdAddItem::execute()
{ {
playlist_t *pPlaylist = getIntf()->p_sys->p_playlist; 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; return;
}
if( m_playNow ) if( m_playNow )
{ {
// Enqueue and play the item // 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, PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true,
false ); false );
} }
else else
{ {
// Enqueue the item only // Enqueue the item only
playlist_Add( pPlaylist, m_name.c_str(), NULL, playlist_Add( pPlaylist, psz_uri, NULL,
PLAYLIST_APPEND, PLAYLIST_END, true, false ); 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