diff options
-rw-r--r-- | cache/bug_excerpt.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cache/bug_excerpt.go b/cache/bug_excerpt.go index d0d0aa60..36c7dcfe 100644 --- a/cache/bug_excerpt.go +++ b/cache/bug_excerpt.go @@ -95,7 +95,8 @@ func NewBugExcerpt(b bug.Interface, snap *bug.Snapshot) *BugExcerpt { e.AuthorId = snap.Author.Id() case *identity.Bare: e.LegacyAuthor = LegacyAuthorExcerpt{ - Name: snap.Author.Name(), + Login: snap.Author.Login(), + Name: snap.Author.Name(), } default: panic("unhandled identity type") |