Invalidate accounts/identities adapter

This commit is contained in:
M66B 2023-08-21 21:53:50 +02:00
parent 60b7ef78b7
commit 488e32d362
2 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,7 @@ public class FragmentDialogSelectAccount extends FragmentDialogBase {
if (!account.isOutlook())
accounts.remove(account);
adapter.addAll(accounts);
adapter.notifyDataSetChanged();
}
@Override

View File

@ -79,6 +79,7 @@ public class FragmentDialogSelectIdentity extends FragmentDialogBase {
protected void onExecuted(Bundle args, List<TupleIdentityEx> identities) {
EntityLog.log(context, "Composable identities=" + (identities == null ? null : identities.size()));
adapter.addAll(identities);
adapter.notifyDataSetChanged();
}
@Override