From e2668e7cfae623c8d10acbc92dbfbba71f5b417f Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 27 Dec 2018 09:24:46 +0400 Subject: [PATCH] Default auto-download 8 MB files. --- Telegram/SourceFiles/data/data_auto_download.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/data/data_auto_download.cpp b/Telegram/SourceFiles/data/data_auto_download.cpp index e5ce477bff..594798eab6 100644 --- a/Telegram/SourceFiles/data/data_auto_download.cpp +++ b/Telegram/SourceFiles/data/data_auto_download.cpp @@ -17,7 +17,7 @@ namespace Data { namespace AutoDownload { namespace { -constexpr auto kDefaultMaxSize = 2 * 1024 * 1024; +constexpr auto kDefaultMaxSize = 8 * 1024 * 1024; constexpr auto kVersion = char(1); template