1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-06 18:15:48 +00:00

Ignore FindRecentlyPushedNewBranches err (#31164) (#31171)

Backport #31164
This commit is contained in:
wxiaoguang 2024-05-30 14:24:14 +08:00 committed by GitHub
parent f0d55e4819
commit cc64d4d2b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1047,8 +1047,7 @@ func renderHomeCode(ctx *context.Context) {
baseRepoPerm.CanRead(unit_model.TypePullRequests) {
ctx.Data["RecentlyPushedNewBranches"], err = git_model.FindRecentlyPushedNewBranches(ctx, ctx.Doer, opts)
if err != nil {
ctx.ServerError("FindRecentlyPushedNewBranches", err)
return
log.Error("FindRecentlyPushedNewBranches failed: %v", err)
}
}
}