diff options
Diffstat (limited to 'src/accounts-service-access.vala')
-rw-r--r-- | src/accounts-service-access.vala | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/accounts-service-access.vala b/src/accounts-service-access.vala index 1b66370..9372aa9 100644 --- a/src/accounts-service-access.vala +++ b/src/accounts-service-access.vala @@ -1,6 +1,6 @@ /* * Copyright 2016 Canonical Ltd. - * Copyright 2021-2023 Robert Tari + * Copyright 2021-2024 Robert Tari * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -144,6 +144,13 @@ public class AccountsServiceAccess : Object } } + bool bPrefix = username.has_prefix ("*"); + + if (bPrefix) + { + return; + } + // Get master AccountsService object DBusProxy accounts_proxy; |