diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-10-26 17:07:21 -0400 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-10-26 17:07:21 -0400 |
commit | cc88e4292669c88a9600e7b61982cff6e2b6436c (patch) | |
tree | 7ebaa4daf5074f4fd65877b39930939c003ed14e /src | |
parent | 10f7c505fc666ec0e95a3d0e0ac0def59a3f6dd9 (diff) | |
parent | c27acea44b7a4e073b74e7da1c072029e245ea3e (diff) | |
download | ayatana-indicator-sound-cc88e4292669c88a9600e7b61982cff6e2b6436c.tar.gz ayatana-indicator-sound-cc88e4292669c88a9600e7b61982cff6e2b6436c.tar.bz2 ayatana-indicator-sound-cc88e4292669c88a9600e7b61982cff6e2b6436c.zip |
protect against odd mpris keys
Diffstat (limited to 'src')
-rw-r--r-- | src/music-player-bridge.vala | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/music-player-bridge.vala b/src/music-player-bridge.vala index 0c9cb10..e7bc1fb 100644 --- a/src/music-player-bridge.vala +++ b/src/music-player-bridge.vala @@ -229,14 +229,13 @@ public class MusicPlayerBridge : GLib.Object { var result = desktop_or_interface; var tokens = desktop_or_interface.split( "." ); - if ( tokens.length > 1 ){ + if (tokens != null && tokens.length > 1){ result = tokens[tokens.length - 1]; } var temp = result.split("-"); - if (temp.length > 1){ + if (temp != null && temp.length > 1){ result = temp[0]; } - debug("determine key result = %s", result); return result; } |