@@ -73,15 +73,20 @@ QUrl PlaylistItem::getUrl() const 
 void PlaylistItem::sync() {
     input_item_t *media = vlc_playlist_item_GetMedia(d->item.get());
     vlc_mutex_lock(&media->lock);
-    d->title    = media->psz_name;
     d->duration = media->i_duration;
     d->url      = media->psz_uri;
 
     if (media->p_meta) {
+        d->title   = vlc_meta_Get(media->p_meta, vlc_meta_Title);
         d->artist  = vlc_meta_Get(media->p_meta, vlc_meta_Artist);
         d->album   = vlc_meta_Get(media->p_meta, vlc_meta_Album);
         d->artwork = vlc_meta_Get(media->p_meta, vlc_meta_ArtworkURL);
     }
+
+    if (d->title.isNull())
+        /* If there is no title, use the item name */
+        d->title = media->psz_name;
+
     vlc_mutex_unlock(&media->lock);
 }