Handle another login error code

pull/14/head
Sam Bosley 12 years ago
parent af4b81b15b
commit 52d6adf56a

@ -882,7 +882,7 @@ public class ActFmLoginActivity extends SherlockFragmentActivity {
message = getString(R.string.actfm_ALA_error_user_exists);
else if ("incorrect_password".equals(code))
message = getString(R.string.actfm_ALA_error_wrong_password);
else if ("user_not_found".equals(code))
else if ("user_not_found".equals(code) || "missing_param".equals(code))
message = getString(R.string.actfm_ALA_error_user_not_found);
}
}

Loading…
Cancel
Save