Safe watch app limits increase

This commit is contained in:
Kylmakalle 2025-01-13 23:01:00 +02:00
parent 4a562c20a7
commit 27b7bc76b2
2 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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 ()
{