aboutsummaryrefslogtreecommitdiff
path: root/src/player-item.vala
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2010-07-12 19:45:06 +0200
committerBazaar Package Importer <james.westby@ubuntu.com>2010-07-12 19:45:06 +0200
commitdf2aaa5b8d38ec4385f5be6bedfd143317d9e015 (patch)
tree0b7bbb46adea718590192731eaad1f152571b6e6 /src/player-item.vala
parent9c00e0247f69c00c1e855a42e82bfd767b16b607 (diff)
parent69f91546fb17d7209e5267a5ce7e0ae6b9bbd9d9 (diff)
downloadayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.tar.gz
ayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.tar.bz2
ayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.zip
New upstream release.
Diffstat (limited to 'src/player-item.vala')
-rw-r--r--src/player-item.vala23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/player-item.vala b/src/player-item.vala
index 171c140..3e10b7b 100644
--- a/src/player-item.vala
+++ b/src/player-item.vala
@@ -55,8 +55,17 @@ 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")){
+ try{
+ update = Filename.from_uri(update.strip());
+ }
+ catch(ConvertError e){
+ warning("Problem converting URI %s to file path", update);
+ }
+ }
+ this.property_set(property, update);
}
else if (v.holds (typeof (int))){
debug("with value : %i", v.get_int());
@@ -80,15 +89,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;
- }
-
}