Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
Mario Danic 2019-03-04 12:12:25 +01:00
parent d8e6b9f6ef
commit e936bf7479
2 changed files with 4 additions and 3 deletions

View File

@ -167,5 +167,4 @@ public final class MainActivity extends BaseActivity implements ActionBarProvide
super.onBackPressed();
}
}
}

View File

@ -193,8 +193,10 @@ public class AccountVerificationController extends BaseController {
}
if (isAccountImport) {
getRouter().pushController(RouterTransaction.with(new WebViewLoginController(baseUrl,
false, username, "")));
getRouter().replaceTopController(RouterTransaction.with(new WebViewLoginController(baseUrl,
false, username, ""))
.pushChangeHandler(new HorizontalChangeHandler())
.popChangeHandler(new HorizontalChangeHandler()));
} else {
checkEverything();
}