mirror of
https://github.com/nextcloud/android.git
synced 2024-11-30 08:25:21 +03:00
Fix CR
This commit is contained in:
parent
1167d46d93
commit
9ef32d8847
2 changed files with 4 additions and 4 deletions
|
@ -1562,7 +1562,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
|
|||
mServerStatusText = getResources().getString(R.string.auth_unknown_error_http_title);
|
||||
break;
|
||||
case UNKNOWN_ERROR:
|
||||
if(result.getException() != null) {
|
||||
if (result.getException() != null) {
|
||||
mServerStatusText = getResources().getString(
|
||||
R.string.auth_unknown_error_exception_title,
|
||||
result.getException().getMessage()
|
||||
|
|
|
@ -239,9 +239,9 @@
|
|||
<string name="auth_not_configured_title">Malformed server configuration</string>
|
||||
<string name="auth_account_not_new">An account for the same user and server already exists on the device</string>
|
||||
<string name="auth_account_not_the_same">The entered user does not match the user of this account</string>
|
||||
<string name="auth_unknown_error_http_title">Unknown HTTP error occurred!</string>
|
||||
<string name="auth_unknown_error_title">Unknown error occurred!</string>
|
||||
<string name="auth_unknown_error_exception_title">Unknown error: %1$s</string>
|
||||
<string name="auth_unknown_error_http_title">Unknown HTTP error occurred!</string>
|
||||
<string name="auth_unknown_error_title">Unknown error occurred!</string>
|
||||
<string name="auth_unknown_error_exception_title">Unknown error: %1$s</string>
|
||||
<string name="auth_unknown_host_title">Could not find host</string>
|
||||
<string name="auth_incorrect_path_title">Server not found</string>
|
||||
<string name="auth_timeout_title">The server took too long to respond</string>
|
||||
|
|
Loading…
Reference in a new issue