aboutsummaryrefslogtreecommitdiff
path: root/src/mpris2-watcher.vala
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-01-09 14:30:40 +0000
committerConor Curran <conor.curran@canonical.com>2011-01-09 14:30:40 +0000
commitd34f1878510f6f23a0e238e359d0e057f2991908 (patch)
tree8aad3c82a068af0c069b7c5ce51286c9aa049611 /src/mpris2-watcher.vala
parent6599f962aacdb311322305234d3746ac27533f5e (diff)
downloadayatana-indicator-sound-d34f1878510f6f23a0e238e359d0e057f2991908.tar.gz
ayatana-indicator-sound-d34f1878510f6f23a0e238e359d0e057f2991908.tar.bz2
ayatana-indicator-sound-d34f1878510f6f23a0e238e359d0e057f2991908.zip
commit on the pain caused by that banshe mpris peculiarity
Diffstat (limited to 'src/mpris2-watcher.vala')
-rw-r--r--src/mpris2-watcher.vala11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mpris2-watcher.vala b/src/mpris2-watcher.vala
index b30aa88..9ef9b2f 100644
--- a/src/mpris2-watcher.vala
+++ b/src/mpris2-watcher.vala
@@ -111,7 +111,7 @@ public class Mpris2Watcher : GLib.Object
else if (previous_owner == "" && current_owner != "") {
debug ("Client '%s' has appeared", name);
bool use_playlists = this.supports_playlists ( name );
- client_appeared (mpris2_root.DesktopEntry, name, false/*use_playlists*/);
+ client_appeared (mpris2_root.DesktopEntry, name, use_playlists);
}
}
@@ -134,7 +134,14 @@ public class Mpris2Watcher : GLib.Object
private bool supports_playlists ( string name )
{
try {
- debug( "name = %s", name);
+ /* The dbusproxy flag parameter is needed to ensure Banshee does not
+ blow up. I suspect the issue is that if you
+ try to instantiate a dbus object which does not have any properties
+ associated with it, gdbus will attempt to fetch the properties (this is
+ in the documentation) but the banshee mpris dbus object more than likely
+ causes a crash because it doesn't check for the presence of properties
+ before attempting to access them.
+ */
this.introspectable = Bus.get_proxy_sync ( BusType.SESSION,
name,
MPRIS_MEDIA_PLAYER_PATH,