mirror of
https://github.com/etesync/android
synced 2024-11-22 07:58:09 +00:00
Fix access to uninitialized properties in account update service.
This commit is contained in:
parent
26063ce9f5
commit
f629d23c38
@ -88,14 +88,14 @@ class AccountUpdateService : Service() {
|
||||
|
||||
val accountNames = LinkedList<String>()
|
||||
val am = AccountManager.get(this)
|
||||
for (account in am.getAccountsByType(App.accountType)) {
|
||||
for (account in am.getAccountsByType(getString(R.string.account_type))) {
|
||||
accountNames.add(account.name)
|
||||
}
|
||||
|
||||
val data = (application as App).data
|
||||
|
||||
// delete orphaned address book accounts
|
||||
for (addrBookAccount in am.getAccountsByType(App.addressBookAccountType)) {
|
||||
for (addrBookAccount in am.getAccountsByType(getString(R.string.account_type_address_book))) {
|
||||
val addressBook = LocalAddressBook(this, addrBookAccount, null)
|
||||
try {
|
||||
if (!accountNames.contains(addressBook.mainAccount.name))
|
||||
|
Loading…
Reference in New Issue
Block a user