From d612a24e3e8cd288047448df86b69d00484dd183 Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Thu, 30 May 2024 10:24:22 +0800 Subject: [PATCH] Ignore FindRecentlyPushedNewBranches err (#31164) Fix #31163 --- routers/web/repo/view.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/routers/web/repo/view.go b/routers/web/repo/view.go index e1498c0d58..386ef7be5c 100644 --- a/routers/web/repo/view.go +++ b/routers/web/repo/view.go @@ -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) } } }