diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-16 10:00:07 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-16 10:18:03 +0100 |
commit | 507a4208b75e3eae389d7b33d31f48550b921579 (patch) | |
tree | 1dbeff4e1a640d5c14906b12e623f453ba23903c /src/accounts-service-access.vala | |
parent | f67f74e2569cb5061261bbb34065ac3680fa4e57 (diff) | |
download | ayatana-indicator-sound-507a4208b75e3eae389d7b33d31f48550b921579.tar.gz ayatana-indicator-sound-507a4208b75e3eae389d7b33d31f48550b921579.tar.bz2 ayatana-indicator-sound-507a4208b75e3eae389d7b33d31f48550b921579.zip |
src/accounts-service-access.vala: Locate another location in the code where we need to check for HAS_UT_ACCTSERVICE_SOUND_SETTINGS.
Diffstat (limited to 'src/accounts-service-access.vala')
-rw-r--r-- | src/accounts-service-access.vala | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/accounts-service-access.vala b/src/accounts-service-access.vala index 9ce7f66..57c625e 100644 --- a/src/accounts-service-access.vala +++ b/src/accounts-service-access.vala @@ -142,7 +142,11 @@ public class AccountsServiceAccess : Object string user_path; if (user_path_variant.check_format_string ("(o)", true)) { user_path_variant.get ("(o)", out user_path); +#if HAS_UT_ACCTSERVICE_SOUND_SETTINGS + _user_proxy = yield DBusProxy.create_for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.ubuntu.AccountsService.Sound"); +#else _user_proxy = yield DBusProxy.create_for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "org.ayatana.AccountsService.Sound"); +#endif } else { warning ("Unable to find user name after calling FindUserByName. Expected type: %s and obtained %s", "(o)", user_path_variant.get_type_string () ); return; |