From dd04900287e2ac27363671e7df60f6135340f878 Mon Sep 17 00:00:00 2001 From: Kash Javed Date: Wed, 18 Dec 2024 09:54:18 +0000 Subject: [PATCH] GCS-28: added context to call to next for session config --- .../Infrastructure/ApplicationBuilderExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user/src/gpconnect-appointment-checker/Core/Configuration/Infrastructure/ApplicationBuilderExtensions.cs b/modules/end-user/src/gpconnect-appointment-checker/Core/Configuration/Infrastructure/ApplicationBuilderExtensions.cs index c828f5d5..f2044f74 100644 --- a/modules/end-user/src/gpconnect-appointment-checker/Core/Configuration/Infrastructure/ApplicationBuilderExtensions.cs +++ b/modules/end-user/src/gpconnect-appointment-checker/Core/Configuration/Infrastructure/ApplicationBuilderExtensions.cs @@ -54,7 +54,7 @@ public static void ConfigureApplicationBuilderServices(this IApplicationBuilder app.Use(async (context, next) => { context.Session.SetString("SessionKey", "Session"); - await next(); + await next(context); }); app.Use(async (context, next) =>