Fix bug in createFragment
on recover account, dialcode and phone number was inverted
This commit is contained in:
parent
8329f416f8
commit
e22c5c1172
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ public class CreateAccountFragment extends Fragment implements CompoundButton.On
|
|||
}
|
||||
if (status.equals(RequestStatus.Ok)) {
|
||||
AssistantActivity.instance().displayAssistantCodeConfirm(getUsername()
|
||||
, dialCode.getText().toString() , phoneNumberEdit.getText().toString(), false);
|
||||
, phoneNumberEdit.getText().toString(), dialCode.getText().toString(), false);
|
||||
} else {
|
||||
createAccount.setEnabled(true);
|
||||
//SMS error
|
||||
|
|
Loading…
Reference in a new issue