1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-07 02:57:20 +00:00

Fix external renderer (#16401)

* fix external renderer

* use GBackground context as fallback

* no fallback, return error

Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
6543
2021-07-12 23:13:59 +02:00
committed by GitHub
parent fb04cc7dbd
commit 46a4c6835d
2 changed files with 7 additions and 0 deletions

View File

@ -98,6 +98,10 @@ func (p *Renderer) Render(ctx *markup.RenderContext, input io.Reader, output io.
args = append(args, f.Name())
}
if ctx == nil || ctx.Ctx == nil {
return fmt.Errorf("RenderContext did not provide context")
}
processCtx, cancel := context.WithCancel(ctx.Ctx)
defer cancel()