From 7f7ae5edbd6e30c01b66d190735cb09e60decc1e Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Mon, 4 Apr 2022 23:56:04 +0530 Subject: [PATCH] fix: set "treatCiphertextMessagesAsReal" flag as default false --- src/Defaults/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Defaults/index.ts b/src/Defaults/index.ts index 7432359..1ac91a8 100644 --- a/src/Defaults/index.ts +++ b/src/Defaults/index.ts @@ -30,7 +30,7 @@ const BASE_CONNECTION_CONFIG: CommonSocketConfig = { emitOwnEvents: true, defaultQueryTimeoutMs: 60_000, customUploadHosts: [], - treatCiphertextMessagesAsReal: true, + treatCiphertextMessagesAsReal: false, retryRequestDelayMs: 250 }