mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 20:24:24 +00:00
Fix cache problem on dashboard (#9358)
This commit is contained in:
parent
7217b703e9
commit
c6b3c5bcef
@ -78,7 +78,9 @@ func retrieveFeeds(ctx *context.Context, options models.GetFeedsOptions) {
|
|||||||
if act.ActUser != nil {
|
if act.ActUser != nil {
|
||||||
userCache[act.ActUserID] = act.ActUser
|
userCache[act.ActUserID] = act.ActUser
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, act := range actions {
|
||||||
repoOwner, ok := userCache[act.Repo.OwnerID]
|
repoOwner, ok := userCache[act.Repo.OwnerID]
|
||||||
if !ok {
|
if !ok {
|
||||||
repoOwner, err = models.GetUserByID(act.Repo.OwnerID)
|
repoOwner, err = models.GetUserByID(act.Repo.OwnerID)
|
||||||
|
Loading…
Reference in New Issue
Block a user