aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/playlists-menu-item.vala8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/playlists-menu-item.vala b/src/playlists-menu-item.vala
index b3fd7c6..98d18f4 100644
--- a/src/playlists-menu-item.vala
+++ b/src/playlists-menu-item.vala
@@ -48,9 +48,8 @@ public class PlaylistsMenuitem : PlayerItem
Dbusmenu.Menuitem menuitem = new Menuitem();
menuitem.property_set (MENUITEM_PROP_LABEL, detail.name);
var result = this.parse_icon_path (detail.icon_path);
-
if (result != null) {
- menuitem.property_set (MENUITEM_PROP_ICON_NAME, result);
+ menuitem.property_set (MENUITEM_PROP_ICON_NAME, (string)result);
}
menuitem.property_set (MENUITEM_PATH, (string)detail.path);
@@ -84,7 +83,10 @@ public class PlaylistsMenuitem : PlayerItem
private string? parse_icon_path (string path)
{
- return ( path == "" ? null : Path.get_basename(path).split(".")[0] );
+ if (path == "")return null;
+ var icon_file = File.new_for_path (path);
+ if (icon_file.get_path() == null)return null;
+ return icon_file.get_basename().split(".")[0];
}
public void update_individual_playlist (PlaylistDetails new_detail)