From 946f779567ef57f4b70f8d3504a01758b7d1f4c5 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Mon, 27 Nov 2023 15:05:26 +0100 Subject: [PATCH] Fixed encryption error message --- lib/services/api_client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/api_client.dart b/lib/services/api_client.dart index 25b6fa3..636cc34 100644 --- a/lib/services/api_client.dart +++ b/lib/services/api_client.dart @@ -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 );