diff options
author | Ted Gould <ted@gould.cx> | 2014-03-13 16:08:31 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-13 16:08:31 -0500 |
commit | f37625ab59b1d41c7c9986f05ee402790e3be039 (patch) | |
tree | 4a3c1a3b858c0bec56f4849e64daf52fe3947eb2 /src/accounts-service-user.vala | |
parent | 661dc6ed9f771c8f84677aefd951c5e9a5505038 (diff) | |
parent | ccfe01dbcb292ae482068e03db65400577a46136 (diff) | |
download | ayatana-indicator-sound-f37625ab59b1d41c7c9986f05ee402790e3be039.tar.gz ayatana-indicator-sound-f37625ab59b1d41c7c9986f05ee402790e3be039.tar.bz2 ayatana-indicator-sound-f37625ab59b1d41c7c9986f05ee402790e3be039.zip |
Sync to latest account-service-player
Diffstat (limited to 'src/accounts-service-user.vala')
-rw-r--r-- | src/accounts-service-user.vala | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/accounts-service-user.vala b/src/accounts-service-user.vala index debf8bb..ad2cef3 100644 --- a/src/accounts-service-user.vala +++ b/src/accounts-service-user.vala @@ -110,6 +110,11 @@ public class AccountsServiceUser : Object { ~AccountsServiceUser () { this.player = null; + + if (this.timer != 0) { + GLib.Source.remove(this.timer); + this.timer = 0; + } } void new_proxy (GLib.Object? obj, AsyncResult res) { |