Increment chunk num so backfill logs work correctly

This commit is contained in:
Tulir Asokan 2021-04-01 12:31:39 +03:00
parent 9b25e26b04
commit e9e623abf6

View file

@ -893,8 +893,9 @@ func (portal *Portal) FillInitialHistory(user *User) error {
var messages []interface{}
before := ""
fromMe := true
chunkNum := 1
chunkNum := 0
for n > 0 {
chunkNum += 1
count := 50
if n < count {
count = n