diff options
author | Ted Gould <ted@gould.cx> | 2015-03-26 10:56:49 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2015-03-26 10:56:49 -0500 |
commit | 8da8d520e32d6ca8be071a88cd3702644e07ace4 (patch) | |
tree | e1ca7f6621605a90c76225cbfb4b899f50a66d5a | |
parent | ebd19de1c09b54e060ae1b327651558a7a694d53 (diff) | |
download | ayatana-indicator-sound-8da8d520e32d6ca8be071a88cd3702644e07ace4.tar.gz ayatana-indicator-sound-8da8d520e32d6ca8be071a88cd3702644e07ace4.tar.bz2 ayatana-indicator-sound-8da8d520e32d6ca8be071a88cd3702644e07ace4.zip |
Handle Vala incorrectly returning null for a non-null type
-rw-r--r-- | src/media-player-mpris.vala | 4 | ||||
-rw-r--r-- | src/mpris2-interfaces.vala | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/media-player-mpris.vala b/src/media-player-mpris.vala index bf25e21..741d887 100644 --- a/src/media-player-mpris.vala +++ b/src/media-player-mpris.vala @@ -202,7 +202,7 @@ public class MediaPlayerMpris: MediaPlayer { gproxy.g_properties_changed.connect (this.proxy_properties_changed); this.notify_property ("is-running"); - this.state = this.proxy.PlaybackStatus; + this.state = this.proxy.PlaybackStatus != null ? this.proxy.PlaybackStatus : "Unknown"; this.update_current_track (gproxy.get_cached_property ("Metadata")); if (this.play_when_attached) { @@ -270,7 +270,7 @@ public class MediaPlayerMpris: MediaPlayer { void proxy_properties_changed (DBusProxy proxy, Variant changed_properties, string[] invalidated_properties) { if (changed_properties.lookup ("PlaybackStatus", "s", null)) { - this.state = this.proxy.PlaybackStatus; + this.state = this.proxy.PlaybackStatus != null ? this.proxy.PlaybackStatus : "Unknown"; } var metadata = changed_properties.lookup_value ("Metadata", new VariantType ("a{sv}")); diff --git a/src/mpris2-interfaces.vala b/src/mpris2-interfaces.vala index cb68e84..a472d5c 100644 --- a/src/mpris2-interfaces.vala +++ b/src/mpris2-interfaces.vala @@ -37,7 +37,7 @@ public interface MprisPlayer : Object { // properties public abstract HashTable<string, Variant?> Metadata{owned get; set;} public abstract int32 Position{owned get; set;} - public abstract string PlaybackStatus{owned get; set;} + public abstract string? PlaybackStatus{owned get; set;} // methods public abstract async void PlayPause() throws IOError; public abstract async void Next() throws IOError; |