mirror of https://github.com/go-gitea/gitea.git
Backport #24118 by @yp05327 Co-authored-by: yp05327 <576951401@qq.com>
This commit is contained in:
parent
893c97dd71
commit
67a73dd05f
|
@ -22,13 +22,13 @@ import (
|
|||
func RunnersList(ctx *context.Context, tplName base.TplName, opts actions_model.FindRunnerOptions) {
|
||||
count, err := actions_model.CountRunners(ctx, opts)
|
||||
if err != nil {
|
||||
ctx.ServerError("AdminRunners", err)
|
||||
ctx.ServerError("CountRunners", err)
|
||||
return
|
||||
}
|
||||
|
||||
runners, err := actions_model.FindRunners(ctx, opts)
|
||||
if err != nil {
|
||||
ctx.ServerError("AdminRunners", err)
|
||||
ctx.ServerError("FindRunners", err)
|
||||
return
|
||||
}
|
||||
if err := runners.LoadAttributes(ctx); err != nil {
|
||||
|
|
Loading…
Reference in New Issue