1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-12 00:34:20 -04:00

Ignore FindRecentlyPushedNewBranches err (#31164)

Fix #31163
This commit is contained in:
wxiaoguang 2024-05-30 10:24:22 +08:00 committed by GitHub
parent ce751761ce
commit d612a24e3e
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)
}
}
}