Skip to content

Commit

Permalink
GCS-28: added context to call to next for session config
Browse files Browse the repository at this point in the history
  • Loading branch information
JavedK15 committed Dec 18, 2024
1 parent d58bd08 commit dd04900
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) =>
Expand Down

0 comments on commit dd04900

Please sign in to comment.