Removed special chars from password creation:

pull/14/head
Sam Bosley 13 years ago
parent a6c9dba696
commit 2957e7ee2e

@ -299,7 +299,7 @@ public class ActFmLoginActivity extends Activity implements AuthListener {
};
private String generateRandomPassword() {
String acceptable = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),."; //$NON-NLS-1$
String acceptable = "abcdefghijklmnopqrstuvwxyz1234567890"; //$NON-NLS-1$
char[] chars = new char[8];
char last = 'a';
for (int i = 0; i < chars.length; i++) {

Loading…
Cancel
Save