mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 08:45:17 +03:00
Merge pull request #2030 from nextcloud/untrustedDomain
Show infos on untrusted domain if available
This commit is contained in:
commit
2c62688440
3 changed files with 5 additions and 1 deletions
|
@ -182,7 +182,7 @@ dependencies {
|
|||
// dependencies for app building
|
||||
implementation 'com.android.support:multidex:1.0.2'
|
||||
// implementation project('nextcloud-android-library')
|
||||
implementation 'com.github.nextcloud:android-library:1.0.35'
|
||||
implementation 'com.github.nextcloud:android-library:1.0.36'
|
||||
versionDevImplementation 'com.github.nextcloud:android-library:master-SNAPSHOT' // use always latest master
|
||||
implementation "com.android.support:support-v4:${supportLibraryVersion}"
|
||||
implementation "com.android.support:design:${supportLibraryVersion}"
|
||||
|
|
|
@ -1569,6 +1569,9 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
|
|||
case MAINTENANCE_MODE:
|
||||
mServerStatusText = getResources().getString(R.string.maintenance_mode);
|
||||
break;
|
||||
case UNTRUSTED_DOMAIN:
|
||||
mServerStatusText = getResources().getString(R.string.untrusted_domain);
|
||||
break;
|
||||
default:
|
||||
mServerStatusText = "";
|
||||
mServerStatusIcon = 0;
|
||||
|
|
|
@ -760,4 +760,5 @@
|
|||
<string name="end_to_end_encryption_dialog_close">Close</string>
|
||||
<string name="end_to_end_encryption_storing_keys">Storing keys</string>
|
||||
<string name="copy_move_to_encrypted_folder_not_supported">Copy/move into encrypted folder currently not supported.</string>
|
||||
<string name="untrusted_domain">Access through untrusted domain. Please see documentation for further infos.</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue