From 035739fb623e40dc5ed0df7fc8d26bbd22ff3d20 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 21 Sep 2022 10:06:24 -0400 Subject: [PATCH] Increase fetch limit for user and community searches. Fixes #756 (#773) --- src/shared/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/utils.ts b/src/shared/utils.ts index 19b48c1..9257a4e 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -69,7 +69,7 @@ export const webArchiveUrl = "https://web.archive.org"; export const elementUrl = "https://element.io"; export const postRefetchSeconds: number = 60 * 1000; -export const fetchLimit = 20; +export const fetchLimit = 40; export const trendingFetchLimit = 6; export const mentionDropdownFetchLimit = 10; export const commentTreeMaxDepth = 8; -- 2.44.1