From ad9ff1e221c165acae848f23b1d423d5622003f8 Mon Sep 17 00:00:00 2001 From: levlam Date: Sun, 21 Apr 2019 02:25:40 +0300 Subject: [PATCH] Update default value of message_caption_length_max option. GitOrigin-RevId: ed682441f00cb37d13efdf9931987b3b8dc6e7d6 --- td/telegram/Td.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/Td.cpp b/td/telegram/Td.cpp index a2334ab8..2433091f 100644 --- a/td/telegram/Td.cpp +++ b/td/telegram/Td.cpp @@ -4035,7 +4035,7 @@ Status Td::init(DbKey key) { G()->shared_config().set_option_integer("message_text_length_max", 4096); } if (!G()->shared_config().have_option("message_caption_length_max")) { - G()->shared_config().set_option_integer("message_caption_length_max", 200); + G()->shared_config().set_option_integer("message_caption_length_max", 1024); } VLOG(td_init) << "Create ConnectionCreator";