Fixed encryption error message

This commit is contained in:
Juan Gilsanz Polo 2023-11-27 15:05:26 +01:00
parent 06d543553f
commit 946f779567

View file

@ -743,7 +743,7 @@ class ApiClientV2 {
return ApiResponse(
successful: result.successful,
content: result.body != null ? EncryptionValidationResult(
isObject: false,
isObject: true,
encryptionValidation: EncryptionValidation.fromJson(jsonDecode(result.body!))
) : null
);