Fixed auth edge case

This commit is contained in:
M66B
2022-06-07 07:14:29 +02:00
parent 6365b161e8
commit b79015a61c

View File

@@ -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;
}