mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
Don't get into situations where we have no forward extremities
This commit is contained in:
parent
78f6e1a31e
commit
8035c50c06
@ -296,7 +296,7 @@ func (u *latestEventsUpdater) calculateLatest(
|
||||
referenced, err := u.updater.IsReferenced(newEvent.EventReference)
|
||||
if err != nil {
|
||||
logrus.WithError(err).Errorf("Failed to retrieve event reference for %q", newEvent.EventReference.EventID)
|
||||
} else if !referenced {
|
||||
} else if !referenced || len(newLatest) == 0 {
|
||||
newLatest = append(newLatest, newEvent)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user