0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-23 14:58:23 +02:00

Rely on positions from notifier rather than manually advancing them

This commit is contained in:
Neil Alexander 2020-12-17 14:49:53 +00:00
parent c35e46521f
commit 53112a62cc
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 0 additions and 2 deletions

View file

@ -629,7 +629,6 @@ func (d *Database) addReceiptDeltaToResponse(
}
read.User[receipt.UserID] = eduAPI.ReceiptTS{TS: receipt.Timestamp}
content[receipt.EventID] = read
res.NextBatch.ReceiptPosition++
}
ev.Content, err = json.Marshal(content)
if err != nil {

View file

@ -325,7 +325,6 @@ func (rp *RequestPool) currentSyncForUser(req syncRequest, latestPos types.Strea
// Add the updates into the sync response.
for _, event := range events {
res.ToDevice.Events = append(res.ToDevice.Events, event.SendToDeviceEvent)
res.NextBatch.SendToDevicePosition++
}
}