Commit 6e2213ec authored by Rémi Duraffort's avatar Rémi Duraffort

Fix meta writing (inverted logic in the core).

parent 3e5fe8b6
......@@ -145,7 +145,7 @@ int input_item_WriteMeta( vlc_object_t *obj, input_item_t *p_item )
vlc_mutex_lock( &p_item->lock );
type = p_item->i_type;
vlc_mutex_unlock( &p_item->lock );
if( type != ITEM_TYPE_FILE )
if( type == ITEM_TYPE_FILE )
{
char *psz_uri = input_item_GetURI( p_item );
......
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