mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +03:00
Fixed crash when clicking on an error notification due to wrong credentials
This commit is contained in:
parent
33b0909e7b
commit
ffdc77f8d8
1 changed files with 2 additions and 1 deletions
|
@ -219,6 +219,8 @@ SsoWebViewClientListener, OnSslUntrustedCertListener {
|
|||
/// initialize general UI elements
|
||||
initOverallUi(savedInstanceState);
|
||||
|
||||
mOkButton = findViewById(R.id.buttonOK);
|
||||
|
||||
/// initialize block to be moved to single Fragment to check server and get info about it
|
||||
initServerPreFragment(savedInstanceState);
|
||||
|
||||
|
@ -426,7 +428,6 @@ SsoWebViewClientListener, OnSslUntrustedCertListener {
|
|||
mUsernameInput = (EditText) findViewById(R.id.account_username);
|
||||
mPasswordInput = (EditText) findViewById(R.id.account_password);
|
||||
mAuthStatusView = (TextView) findViewById(R.id.auth_status_text);
|
||||
mOkButton = findViewById(R.id.buttonOK);
|
||||
|
||||
/// step 1 - load and process relevant inputs (resources, intent, savedInstanceState)
|
||||
String presetUserName = null;
|
||||
|
|
Loading…
Reference in a new issue