From 15b19f856537e393784f860d8810e47227aa3b78 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 13 Apr 2020 15:12:43 +0400 Subject: [PATCH] Allow sending large images again (up to 108MP). --- Telegram/SourceFiles/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/app.cpp b/Telegram/SourceFiles/app.cpp index fb7bd3f78..4050fa326 100644 --- a/Telegram/SourceFiles/app.cpp +++ b/Telegram/SourceFiles/app.cpp @@ -57,7 +57,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace { -constexpr auto kImageAreaLimit = 6'016 * 3'384; +constexpr auto kImageAreaLimit = 12'032 * 9'024; App::LaunchState _launchState = App::Launched;