fix acocunt creation
This commit is contained in:
parent
acc00d0000
commit
09b6ecca34
2 changed files with 3 additions and 3 deletions
|
@ -414,9 +414,9 @@ public class AssistantActivity extends Activity implements OnClickListener {
|
|||
}
|
||||
}
|
||||
|
||||
public void displayWizardConfirm(String username) {
|
||||
public void displayAssistantConfirm(String username) {
|
||||
CreateAccountActivationFragment fragment = new CreateAccountActivationFragment();
|
||||
|
||||
progress.dismiss();
|
||||
newAccount = true;
|
||||
Bundle extras = new Bundle();
|
||||
extras.putString("Username", username);
|
||||
|
|
|
@ -262,7 +262,7 @@ public class CreateAccountFragment extends Fragment {
|
|||
Runnable runOk = new Runnable() {
|
||||
public void run() {
|
||||
AssistantActivity.instance().saveCreatedAccount(username, password, null, context.getString(R.string.default_domain), null);
|
||||
AssistantActivity.instance().displayWizardConfirm(username);
|
||||
AssistantActivity.instance().displayAssistantConfirm(username);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue