From 52d6adf56a09b0bc125becec9d199067fe3634dd Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 5 Apr 2013 17:08:46 -0700 Subject: [PATCH] Handle another login error code --- .../plugin-src/com/todoroo/astrid/actfm/ActFmLoginActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/ActFmLoginActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/ActFmLoginActivity.java index 3ecca1d9a..71e5423bb 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/ActFmLoginActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/ActFmLoginActivity.java @@ -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); } }