mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 05:15:13 +02:00
Update accounts by default
This commit is contained in:
@@ -98,7 +98,7 @@ public class FragmentGmail extends FragmentBase {
|
||||
Bundle args = getArguments();
|
||||
personal = args.getString("personal");
|
||||
address = args.getString("address");
|
||||
update = args.getBoolean("update");
|
||||
update = args.getBoolean("update", true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -141,7 +141,7 @@ public class FragmentOAuth extends FragmentBase {
|
||||
|
||||
personal = args.getString("personal");
|
||||
address = args.getString("address");
|
||||
update = args.getBoolean("update");
|
||||
update = args.getBoolean("update", true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -118,7 +118,7 @@ public class FragmentQuickSetup extends FragmentBase {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
Bundle args = getArguments();
|
||||
update = args.getBoolean("update");
|
||||
update = args.getBoolean("update", true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user