Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-08-01 13:50:37 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-08-01 14:39:30 +0300
commit6c70e1f22f365322d5f754302e110c9ed716b215 (patch)
treebcf30eb942afad09a2a7f56e0d0f490614ec1311 /tpl/openapi
parent4d221ce468a1209ee9dd6cbece9d1273dad6a29b (diff)
Fix error handling for the time func alias
Fixes #8835
Diffstat (limited to 'tpl/openapi')
-rw-r--r--tpl/openapi/openapi3/init.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/openapi/openapi3/init.go b/tpl/openapi/openapi3/init.go
index 4b4396ff4..a0084d503 100644
--- a/tpl/openapi/openapi3/init.go
+++ b/tpl/openapi/openapi3/init.go
@@ -26,7 +26,7 @@ func init() {
ns := &internal.TemplateFuncsNamespace{
Name: name,
- Context: func(args ...interface{}) interface{} { return ctx },
+ Context: func(args ...interface{}) (interface{}, error) { return ctx, nil },
}
ns.AddMethodMapping(ctx.Unmarshal,