From 468d996c6269ae21d3d3527b36339c6caf8f5d27 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 e1498c0d581e0..386ef7be5ce87 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) } } }