From 55b7437fe7d2c76586bb2c5ddba2cbda02ed54d7 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Tue, 22 Apr 2025 11:29:31 +0200 Subject: [PATCH] fixes --- app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index a331775..260f0be 100644 --- a/app/main.py +++ b/app/main.py @@ -498,8 +498,8 @@ async def leasing_v1_config_token(request: Request): "caChain": [response_ca_chain], "publicCert": response_si_certificate, "publicKey": { - "exp": my_si_public_key.exp(), - "mod": [my_si_public_key.mod()], + "exp": my_root_public_key.exp(), + "mod": [my_root_public_key.mod()], }, }, "configToken": config_token,