clear password field before setting new one
This commit is contained in:
parent
fb41a4ffaa
commit
c27663c456
|
@ -88,6 +88,7 @@ public class ChangePasswordActivity extends XmppActivity implements XmppConnecti
|
|||
Intent intent = getIntent();
|
||||
String password = intent != null ? intent.getStringExtra("password") : null;
|
||||
if (password != null) {
|
||||
this.mNewPassword.getEditableText().clear();
|
||||
this.mNewPassword.getEditableText().append(password);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue