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