mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-06 12:54:11 +01:00
Default primary when no primary account yet
This commit is contained in:
@@ -47,9 +47,6 @@ public interface DaoAccount {
|
||||
@Query("SELECT * FROM account WHERE `primary`")
|
||||
EntityAccount getPrimaryAccount();
|
||||
|
||||
@Query("SELECT COUNT(*) FROM account WHERE synchronize")
|
||||
int getSynchronizingAccountCount();
|
||||
|
||||
@Query("SELECT * FROM account WHERE `primary`")
|
||||
LiveData<EntityAccount> livePrimaryAccount();
|
||||
|
||||
|
||||
@@ -945,16 +945,15 @@ public class FragmentAccount extends FragmentEx {
|
||||
|
||||
color = (account == null || account.color == null ? Color.TRANSPARENT : account.color);
|
||||
|
||||
if (account == null)
|
||||
new SimpleTask<Integer>() {
|
||||
new SimpleTask<EntityAccount>() {
|
||||
@Override
|
||||
protected Integer onLoad(Context context, Bundle args) {
|
||||
return DB.getInstance(context).account().getSynchronizingAccountCount();
|
||||
protected EntityAccount onLoad(Context context, Bundle args) {
|
||||
return DB.getInstance(context).account().getPrimaryAccount();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onLoaded(Bundle args, Integer count) {
|
||||
cbPrimary.setChecked(count == 0);
|
||||
protected void onLoaded(Bundle args, EntityAccount primary) {
|
||||
cbPrimary.setChecked(primary == null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user