cache: don't store legacy identities IDs in bug excerpt as they are not reachable. Fix a panic

This commit is contained in:
Michael Muré 2020-02-03 22:02:01 +01:00
parent 6343c8e611
commit f093be96e9

16
cache/bug_excerpt.go vendored
View File

@ -61,14 +61,18 @@ func (l LegacyAuthorExcerpt) DisplayName() string {
} }
func NewBugExcerpt(b bug.Interface, snap *bug.Snapshot) *BugExcerpt { func NewBugExcerpt(b bug.Interface, snap *bug.Snapshot) *BugExcerpt {
participantsIds := make([]entity.Id, len(snap.Participants)) participantsIds := make([]entity.Id, 0, len(snap.Participants))
for i, participant := range snap.Participants { for _, participant := range snap.Participants {
participantsIds[i] = participant.Id() if _, ok := participant.(*identity.Identity); ok {
participantsIds = append(participantsIds, participant.Id())
}
} }
actorsIds := make([]entity.Id, len(snap.Actors)) actorsIds := make([]entity.Id, 0, len(snap.Actors))
for i, actor := range snap.Actors { for _, actor := range snap.Actors {
actorsIds[i] = actor.Id() if _, ok := actor.(*identity.Identity); ok {
actorsIds = append(actorsIds, actor.Id())
}
} }
e := &BugExcerpt{ e := &BugExcerpt{