Commit 6db571f8 authored by Felix Paul Kühne's avatar Felix Paul Kühne

growl: ignore non-preparsed items

parent a96776fc
...@@ -174,6 +174,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var, ...@@ -174,6 +174,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
p_intf->p_sys->i_item_changes = 0; p_intf->p_sys->i_item_changes = 0;
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/* ignore items which weren't pre-parsed yet */
else if( !input_item_IsPreparsed(p_item) )
return VLC_SUCCESS;
else else
{ {
if( p_item->i_id != p_intf->p_sys->i_id ) { /* "item-change" */ if( p_item->i_id != p_intf->p_sys->i_id ) { /* "item-change" */
......
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