From 663620c5543090afa576a5e92c82c9bdef1d9a4e Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Wed, 29 May 2024 23:35:49 +0800 Subject: [PATCH] fix --- 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) } } }