<div dir="ltr">---<br> modules/notify/notify.c | 6 ++++++<br> 1 file changed, 6 insertions(+)<br><br>diff --git a/modules/notify/notify.c b/modules/notify/notify.c<br>index adc6de2..1fe1eb3 100644<br>--- a/modules/notify/notify.c<br>+++ b/modules/notify/notify.c<br>@@ -170,10 +170,16 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,<br>     if( !p_input )<br>         return VLC_SUCCESS;<br> <br>+<br>     /* Playing something ... */<br>     input_item_t *p_input_item = input_GetItem( p_input );<br>     psz_title = input_item_GetTitleFbName( p_input_item );<br> <br>+    /* Checking for click on directories */<br>+    if(p_input_item->i_type == ITEM_TYPE_DIRECTORY){<br>+        return VLC_SUCCESS;<br>+    }<br>+<br>     /* We need at least a title */<br>     if( EMPTY_STR( psz_title ) )<br>     {<br>-- <br>2.1.4<br></div>