From b6696e901bda250763644800248d9f2379c1f79c Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Fri, 4 Nov 2022 17:51:57 +0000 Subject: [PATCH] core: update receiveChunks option to 6 (~90kb) --- src/Simplex/Chat/Controller.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Simplex/Chat/Controller.hs b/src/Simplex/Chat/Controller.hs index 4cbfe3757c..2599e8f0c3 100644 --- a/src/Simplex/Chat/Controller.hs +++ b/src/Simplex/Chat/Controller.hs @@ -89,7 +89,7 @@ defaultInlineFilesConfig = { offerChunks = 15, -- max when chunks are offered / received with the option - limited to 255 on the encoding level sendChunks = 0, -- max per file when chunks will be sent inline without acceptance totalSendChunks = 30, -- max per conversation when chunks will be sent inline without acceptance - receiveChunks = 5 -- max when chunks are accepted + receiveChunks = 6 -- max when chunks are accepted } data ActiveTo = ActiveNone | ActiveC ContactName | ActiveG GroupName