diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/media-player-mpris.vala | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 21290c7..b01835d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-sound (12.10.2+15.10.20151019-0ubuntu1) wily; urgency=medium + + [ Xavi Garcia Mena ] + * Wily branch for MPRIS controls (LP: #1373313) + + -- Alfonso Sanchez-Beato <alfonso.sanchez-beato@canonical.com> Mon, 19 Oct 2015 07:54:05 +0000 + indicator-sound (12.10.2+15.10.20150915-0ubuntu1) wily; urgency=medium [ Sebastien Bacher ] diff --git a/src/media-player-mpris.vala b/src/media-player-mpris.vala index 780d724..408cdda 100644 --- a/src/media-player-mpris.vala +++ b/src/media-player-mpris.vala @@ -291,7 +291,7 @@ public class MediaPlayerMpris: MediaPlayer { this.state = this.proxy.PlaybackStatus != null ? this.proxy.PlaybackStatus : "Unknown"; } if (changed_properties.lookup ("CanGoNext", "b", null) || changed_properties.lookup ("CanGoPrevious", "b", null) || - changed_properties.lookup ("CanPlay", "b", null) || changed_properties.lookup ("CanPause", "b", null) ) { + changed_properties.lookup ("CanPlay", "b", null) || changed_properties.lookup ("CanPause", "b", null)) { this.playbackstatus_changed (); } |