0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-13 18:08:59 +02:00

Return "to", if we didn't return any presence events (#2407)

Return correct stream position, if we didn't return any presence events
This commit is contained in:
Till 2022-04-30 00:07:50 +02:00 committed by GitHub
parent 31799a3b2a
commit 987d7adc5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,6 +145,10 @@ func (p *PresenceStreamProvider) IncrementalSync(
p.cache.Store(cacheKey, presence)
}
if len(req.Response.Presence.Events) == 0 {
return to
}
return lastPos
}