Commit 9f6ae012 authored by Ilkka Ollakka's avatar Ilkka Ollakka

send Title not filename to last.fm, fixes submitting bug (submits don't

show up when filename is send)
parent aab07f7f
...@@ -1083,7 +1083,7 @@ static int ReadMetaData( intf_thread_t *p_this ) ...@@ -1083,7 +1083,7 @@ static int ReadMetaData( intf_thread_t *p_this )
msg_Dbg( p_this, "No artist.." ); msg_Dbg( p_this, "No artist.." );
WAIT_METADATA_FETCHING( psz_artist ) WAIT_METADATA_FETCHING( psz_artist )
} }
psz_meta = input_item_GetName( input_GetItem( p_input ) ); psz_meta = input_item_GetTitle( input_GetItem( p_input ) );
if( psz_meta ) if( psz_meta )
{ {
psz_title = encode_URI_component( psz_meta ); psz_title = encode_URI_component( psz_meta );
......
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