From a7cd627d578066b3383629dee572aa6385a33281 Mon Sep 17 00:00:00 2001 From: Conor Curran Date: Fri, 9 Jul 2010 16:37:51 +0100 Subject: album art bug fixed --- src/player-item.vala | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'src/player-item.vala') diff --git a/src/player-item.vala b/src/player-item.vala index 171c140..4f95b0c 100644 --- a/src/player-item.vala +++ b/src/player-item.vala @@ -55,8 +55,12 @@ public class PlayerItem : Dbusmenu.Menuitem Value? v = data.lookup(search_key); if (v.holds (typeof (string))){ - debug("with value : %s", v.get_string()); - this.property_set(property, this.sanitize_string(v.get_string())); + string update = v.get_string().strip(); + debug("with value : %s", update); + if(property.contains("arturl")){ + update = Filename.from_uri(update.strip()); + } + this.property_set(property, update); } else if (v.holds (typeof (int))){ debug("with value : %i", v.get_int()); @@ -80,15 +84,5 @@ public class PlayerItem : Dbusmenu.Menuitem return true; } - public static string sanitize_string(string st) - { - string result = st.strip(); - if(result.has_prefix("file:///")){ - result = result.slice(7, result.len()); - } - debug("Sanitize string - result = %s", result); - return result; - } - } -- cgit v1.2.3