diff --git a/Telegram/Watch/Extension/TGNeoChatsController.m b/Telegram/Watch/Extension/TGNeoChatsController.m index 9a546a3762..aa3ce5a7a7 100644 --- a/Telegram/Watch/Extension/TGNeoChatsController.m +++ b/Telegram/Watch/Extension/TGNeoChatsController.m @@ -28,9 +28,9 @@ NSString *const TGContextNotificationKey = @"context"; NSString *const TGSynchronizationStateNotification = @"TGSynchronizationStateNotification"; NSString *const TGSynchronizationStateKey = @"state"; -const NSUInteger TGNeoChatsControllerInitialCount = 3; -const NSUInteger TGNeoChatsControllerLimit = 12; -const NSUInteger TGNeoChatsControllerForwardLimit = 20; +const NSUInteger TGNeoChatsControllerInitialCount = 4; +const NSUInteger TGNeoChatsControllerLimit = 12 * 2; +const NSUInteger TGNeoChatsControllerForwardLimit = 20 * 2; @implementation TGNeoChatsControllerContext diff --git a/Telegram/Watch/Extension/TGNeoConversationController.m b/Telegram/Watch/Extension/TGNeoConversationController.m index a40861f6d5..cc1d1daaa1 100644 --- a/Telegram/Watch/Extension/TGNeoConversationController.m +++ b/Telegram/Watch/Extension/TGNeoConversationController.m @@ -44,11 +44,11 @@ #import "TGAudioMicAlertController.h" NSString *const TGNeoConversationControllerIdentifier = @"TGNeoConversationController"; -const NSInteger TGNeoConversationControllerDefaultBatchLimit = 8; -const NSInteger TGNeoConversationControllerPerformantBatchLimit = 10; -const NSInteger TGNeoConversationControllerMaximumBatchLimit = 20; +const NSInteger TGNeoConversationControllerDefaultBatchLimit = 8 * 2; +const NSInteger TGNeoConversationControllerPerformantBatchLimit = 10 * 2; +const NSInteger TGNeoConversationControllerMaximumBatchLimit = 20 * 2; -const NSInteger TGNeoConversationControllerInitialRenderCount = 4; +const NSInteger TGNeoConversationControllerInitialRenderCount = 4 * 2; @interface TGNeoConversationControllerContext () {