Skip to content
Snippets Groups Projects
Commit 0c0aff55 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

accountservice: set account list before calling daemon

Change-Id: Id7ccf7c562afbcb1b43241469e820c507ecf9618
parent 6e30019a
No related branches found
No related tags found
No related merge requests found
......@@ -210,6 +210,7 @@ public class AccountService {
if (!newAccounts.contains(acc))
acc.cleanup();
mAccountList = newAccounts;
for (String accountId : accountIds) {
Account account = getAccount(accountId);
Map<String, String> details = Ringservice.getAccountDetails(accountId).toNative();
......@@ -258,7 +259,6 @@ public class AccountService {
}
mHasSipAccount = hasSip;
mHasRingAccount = hasJami;
mAccountList = newAccounts;
if (!newAccounts.isEmpty()) {
Account newAccount = newAccounts.get(0);
if (mCurrentAccount != newAccount) {
......@@ -1033,8 +1033,6 @@ public class AccountService {
}
void knownDevicesChanged(String accountId, Map<String, String> devices) {
Log.d(TAG, "knownDevicesChanged: " + accountId + ", " + devices);
Account accountChanged = getAccount(accountId);
if (accountChanged != null) {
accountChanged.setDevices(devices);
......@@ -1135,7 +1133,7 @@ public class AccountService {
}
void registeredNameFound(String accountId, int state, String address, String name) {
Log.d(TAG, "registeredNameFound: " + accountId + ", " + state + ", " + name + ", " + address);
// Log.d(TAG, "registeredNameFound: " + accountId + ", " + state + ", " + name + ", " + address);
Account account = getAccount(accountId);
if (account != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment