From: Sander Saarend Date: Tue, 27 Jun 2023 14:52:01 +0000 (+0300) Subject: Reduce fetchLimit (40 -> 20) (#1638) X-Git-Url: http://these/git/readmes/README.ja.md?a=commitdiff_plain;h=934cabcec4e059d283597934685e9b0109a62430;p=lemmy-ui.git Reduce fetchLimit (40 -> 20) (#1638) Co-authored-by: Dessalines --- diff --git a/src/shared/config.ts b/src/shared/config.ts index c56c64b..97b28d2 100644 --- a/src/shared/config.ts +++ b/src/shared/config.ts @@ -21,7 +21,7 @@ export const markdownFieldCharacterLimit = 50000; export const maxUploadImages = 20; export const concurrentImageUpload = 4; export const updateUnreadCountsInterval = 30000; -export const fetchLimit = 40; +export const fetchLimit = 20; export const relTags = "noopener nofollow"; export const emDash = "\u2014";