Fix cache problem on dashboard (#9358)

This commit is contained in:
Lunny Xiao 2019-12-16 04:44:23 +08:00 committed by techknowlogick
parent 7217b703e9
commit c6b3c5bcef
1 changed files with 2 additions and 0 deletions

View File

@ -78,7 +78,9 @@ func retrieveFeeds(ctx *context.Context, options models.GetFeedsOptions) {
if act.ActUser != nil {
userCache[act.ActUserID] = act.ActUser
}
}
for _, act := range actions {
repoOwner, ok := userCache[act.Repo.OwnerID]
if !ok {
repoOwner, err = models.GetUserByID(act.Repo.OwnerID)