diff --git a/core/src/main/java/com/nextcloud/android/common/core/utils/ecosystem/EcosystemManager.kt b/core/src/main/java/com/nextcloud/android/common/core/utils/ecosystem/EcosystemManager.kt index 18555fe7..52012194 100644 --- a/core/src/main/java/com/nextcloud/android/common/core/utils/ecosystem/EcosystemManager.kt +++ b/core/src/main/java/com/nextcloud/android/common/core/utils/ecosystem/EcosystemManager.kt @@ -167,14 +167,14 @@ class EcosystemManager( if (intent == null) { Log.d(TAG, "received intent is null") - val message = activity.getString(R.string.ecosystem_null_intent) + val message = activity.getString(R.string.ecosystem_wrong_intent) callback.onAccountError(message) return } if (intent.action != ECOSYSTEM_INTENT_ACTION) { Log.d(TAG, "received intent action is not matching") - val message = activity.getString(R.string.ecosystem_received_intent_action_not_matching) + val message = activity.getString(R.string.ecosystem_wrong_intent) callback.onAccountError(message) return } diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 0e19f13c..9080923c 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -16,10 +16,8 @@ %dh - Account is missing. Cannot open the app. - Received intent is null. - Received intent is not matching. + Cannot complete action: received unexpected data Received account is invalid. Invalid account format. Must be an email. App not installed. Redirecting to store…