Remove unneeded check

This commit is contained in:
Till Faelligen 2022-08-05 13:04:42 +02:00
parent 26742cdbc9
commit 2cc21303e7
No known key found for this signature in database
GPG key ID: 3DF82D8AB9211D4E

View file

@ -509,11 +509,6 @@ func (p *PDUStreamProvider) lazyLoadMembers(
}
// Add all users the client doesn't know about yet to a list
for _, event := range timelineEvents {
// If we're doing an initial sync, add all users to the state events, bypassing the cache
if !incremental {
timelineUsers[event.Sender()] = struct{}{}
continue
}
// Membership is not yet cached, add it to the list
if _, ok := p.lazyLoadCache.IsLazyLoadedUserCached(device, roomID, event.Sender()); !ok {
timelineUsers[event.Sender()] = struct{}{}