From c53f506624c939d0fd4837c7c3dc96a4ac7c3080 Mon Sep 17 00:00:00 2001 From: Egor Kitselyuk Date: Tue, 28 Apr 2026 15:17:11 +0300 Subject: [PATCH] MOBILE-129: Add critical error for invalid operationDomain --- sdk/src/main/java/cloud/mindbox/mobile_sdk/SdkValidation.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/src/main/java/cloud/mindbox/mobile_sdk/SdkValidation.kt b/sdk/src/main/java/cloud/mindbox/mobile_sdk/SdkValidation.kt index 6fe73332..ed2f7f34 100644 --- a/sdk/src/main/java/cloud/mindbox/mobile_sdk/SdkValidation.kt +++ b/sdk/src/main/java/cloud/mindbox/mobile_sdk/SdkValidation.kt @@ -13,7 +13,7 @@ internal object SdkValidation { EMPTY_ENDPOINT(true, "Endpoint must not be empty"), INVALID_DEVICE_ID(false, "Invalid previous device UUID format"), INVALID_INSTALLATION_ID(false, "Invalid UUID format of previous installationId"), - INVALID_OPERATIONS_DOMAIN(false, "The operationsDomain is not valid, it will be ignored"); + INVALID_OPERATIONS_DOMAIN(true, "The operationsDomain is not valid"); override fun toString() = "$name(critical=$critical, message=$message)" }