mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 22:55:46 +03:00
fix error after rebase
This commit is contained in:
parent
ec5d2de8bb
commit
1ee78f8c7a
2 changed files with 8 additions and 1 deletions
|
@ -2308,4 +2308,11 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
|
|||
mIsFirstAuthAttempt = false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* For retrieving the clicking on authentication cancel button.
|
||||
*/
|
||||
public void doNegativeAuthenticationDialogClick() {
|
||||
mIsFirstAuthAttempt = true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -139,7 +139,7 @@ public class CredentialsDialogFragment extends DialogFragment
|
|||
|
||||
} else if (which == AlertDialog.BUTTON_NEGATIVE) {
|
||||
mWebView.stopLoading();
|
||||
((AuthenticatorActivity)getActivity()).doNegativeAuthenticatioDialogClick();
|
||||
((AuthenticatorActivity)getActivity()).doNegativeAuthenticationDialogClick();
|
||||
}
|
||||
|
||||
dialog.dismiss();
|
||||
|
|
Loading…
Reference in a new issue