From 1c009b96fe9b588a3addddc726130303f450ee59 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 28 May 2019 21:48:37 +0300 Subject: [PATCH] Only load 50 messages per request in initial fill --- portal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal.go b/portal.go index cdc479f..7da5f1e 100644 --- a/portal.go +++ b/portal.go @@ -565,7 +565,7 @@ func (portal *Portal) FillInitialHistory(user *User) error { fromMe := true chunkNum := 1 for n > 0 { - count := 100 + count := 50 if n < count { count = n }