More comments on the latest events

This commit is contained in:
Mark Haines 2017-02-21 13:56:25 +00:00
parent fde423e5da
commit fe2c0be29c

View file

@ -41,6 +41,8 @@ func updateLatestEvents(
for _, prevEvent := range prevEvents { for _, prevEvent := range prevEvents {
if l.EventID == prevEvent.EventID && bytes.Compare(l.EventSHA256, prevEvent.EventSHA256) == 0 { if l.EventID == prevEvent.EventID && bytes.Compare(l.EventSHA256, prevEvent.EventSHA256) == 0 {
// This event can be removed from the latest events cause we've found an event that references it. // This event can be removed from the latest events cause we've found an event that references it.
// (If an event is referenced by another event then it can't be one of the latest events in the room
// because we have an event that comes after it)
continue continue
} }
// Keep the event in the latest events. // Keep the event in the latest events.