mirror of
https://github.com/moparisthebest/Conversations
synced 2025-01-13 06:28:06 -05:00
fixed #108
This commit is contained in:
parent
836366bf2d
commit
bab69ffcf9
@ -515,9 +515,10 @@ public class ContactsActivity extends XmppActivity {
|
||||
getActionBar().setHomeButtonEnabled(false);
|
||||
}
|
||||
this.rosterContacts.clear();
|
||||
for (int i = 0; i < accounts.size(); ++i) {
|
||||
rosterContacts.addAll(xmppConnectionService.getRoster(accounts
|
||||
.get(i)));
|
||||
for(Account account : accounts) {
|
||||
if (account.getStatus() != Account.STATUS_DISABLED) {
|
||||
rosterContacts.addAll(xmppConnectionService.getRoster(account));
|
||||
}
|
||||
}
|
||||
updateAggregatedContacts();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user