summaryrefslogtreecommitdiff
path: root/src/se/leap/leapclient/NewProviderDialog.java
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2013-07-02 19:20:58 +0200
committerSean Leonard <meanderingcode@aetherislands.net>2013-07-12 14:26:29 -0600
commit99a4d94564635f0223d447bc9bcf081cadd8ff36 (patch)
tree1beba3aeacae1e2e278a5bbaffa3cf44ce527154 /src/se/leap/leapclient/NewProviderDialog.java
parent210b562bd474e7d8c22becf62ea52399f0a6d9f9 (diff)
User messages are added to the new recovery dialog
When login is not successful, a new recovery dialog is prompted with a message about the previous error.
Diffstat (limited to 'src/se/leap/leapclient/NewProviderDialog.java')
-rw-r--r--src/se/leap/leapclient/NewProviderDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/se/leap/leapclient/NewProviderDialog.java b/src/se/leap/leapclient/NewProviderDialog.java
index cf361719..3712e8f9 100644
--- a/src/se/leap/leapclient/NewProviderDialog.java
+++ b/src/se/leap/leapclient/NewProviderDialog.java
@@ -68,7 +68,7 @@ public class NewProviderDialog extends DialogFragment {
Toast.makeText(getActivity().getApplicationContext(), R.string.valid_url_entered, Toast.LENGTH_LONG).show();
} else {
url_input_field.setText("");
- Toast.makeText(getActivity().getApplicationContext(), R.string.not_valid_password_message, Toast.LENGTH_LONG).show();
+ Toast.makeText(getActivity().getApplicationContext(), R.string.not_valid_url_entered, Toast.LENGTH_LONG).show();
}
}
})