From 76dfcb00e4724e2f8fcf19bd23ea379233cd6df2 Mon Sep 17 00:00:00 2001 From: beltram Date: Mon, 15 May 2023 10:36:43 +0200 Subject: [PATCH] try silencing template data for dichotomies --- acme/order.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme/order.go b/acme/order.go index d55376c5..c404acd6 100644 --- a/acme/order.go +++ b/acme/order.go @@ -216,11 +216,11 @@ func (o *Order) Finalize(ctx context.Context, db DB, csr *x509.CertificateReques data.Set("dpop", dpop)*/ // inject the raw access token as template variable - access, ok := ctx.Value("access").(map[string]interface{}) + /*access, ok := ctx.Value("access").(map[string]interface{}) if !ok { return WrapErrorISE(err, "Invalid or absent access in context") } - data.Set("access", access) + data.Set("access", access)*/ /*// inject the raw OIDC id token as template variable oidc, ok := ctx.Value("oidc").(map[string]interface{})