mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Fixed auth edge case
This commit is contained in:
@@ -1662,7 +1662,10 @@ public class FragmentAccount extends FragmentBase {
|
||||
fragment = new FragmentGmail();
|
||||
else if (auth == AUTH_TYPE_OAUTH)
|
||||
fragment = new FragmentOAuth();
|
||||
else {
|
||||
else if (auth == AUTH_TYPE_PASSWORD) {
|
||||
onPassword();
|
||||
return;
|
||||
} else {
|
||||
Log.e("Unknown auth=" + auth);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user