mirror of
https://github.com/go-gitea/gitea
synced 2025-11-02 04:18:25 +00:00
Use context for RepositoryList.LoadAttributes (#23435)
This commit is contained in:
@@ -117,7 +117,7 @@ func getNotifications(ctx *context.Context) {
|
||||
return
|
||||
}
|
||||
notifications = notifications.Without(failures)
|
||||
if err := repos.LoadAttributes(); err != nil { // TODO
|
||||
if err := repos.LoadAttributes(ctx); err != nil {
|
||||
ctx.ServerError("LoadAttributes", err)
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user