From 17b7db6219eacf0e52dc35bd0aa8bdb318e256cb Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 24 Apr 2024 15:58:02 +0400 Subject: [PATCH] Request 64 frequent contacts instead of 32. --- Telegram/SourceFiles/data/components/top_peers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/data/components/top_peers.cpp b/Telegram/SourceFiles/data/components/top_peers.cpp index 318a739b5..f476869b6 100644 --- a/Telegram/SourceFiles/data/components/top_peers.cpp +++ b/Telegram/SourceFiles/data/components/top_peers.cpp @@ -21,7 +21,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace Data { namespace { -constexpr auto kLimit = 32; +constexpr auto kLimit = 64; constexpr auto kRequestTimeLimit = 10 * crl::time(1000); [[nodiscard]] float64 RatingDelta(TimeId now, TimeId was, int decay) {