From 563e67457d9be281dc3fbd6bf476748c8751d621 Mon Sep 17 00:00:00 2001 From: Avently <7953703+avently@users.noreply.github.com> Date: Thu, 16 Jan 2025 10:20:51 -0800 Subject: [PATCH] encreased initial and preload counters --- apps/ios/SimpleXChat/APITypes.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/ios/SimpleXChat/APITypes.swift b/apps/ios/SimpleXChat/APITypes.swift index 36f1bdaeab..8144824ca8 100644 --- a/apps/ios/SimpleXChat/APITypes.swift +++ b/apps/ios/SimpleXChat/APITypes.swift @@ -1191,9 +1191,9 @@ struct NewUser: Encodable { } public enum ChatPagination { - public static let INITIAL_COUNT = 50 - public static let PRELOAD_COUNT = 50 - public static let UNTIL_PRELOAD_COUNT = 20 + public static let INITIAL_COUNT = 75 + public static let PRELOAD_COUNT = 100 + public static let UNTIL_PRELOAD_COUNT = 50 case last(count: Int) case after(chatItemId: Int64, count: Int)