We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ae131a + c830479 commit 1c5e87bCopy full SHA for 1c5e87b
auth/src/main/java/com/firebase/ui/auth/KickoffActivity.java
@@ -108,6 +108,12 @@ private void showReauthDialog() {
108
final FlowParameters flowParams = mActivityHelper.getFlowParams();
109
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.FirebaseUI_Dialog)
110
.setTitle(R.string.reauth_dialog_title)
111
+ .setOnCancelListener(new DialogInterface.OnCancelListener() {
112
+ @Override
113
+ public void onCancel(DialogInterface dialog) {
114
+ finish(ResultCodes.CANCELED, new Intent());
115
+ }
116
+ })
117
.setPositiveButton(R.string.sign_in_default, new OnClickListener() {
118
@Override
119
public void onClick(DialogInterface dialog, int which) {
0 commit comments