diff --git a/BFF/src/Host/Internal/StrictSameSiteExternalAuthenticationMiddleware.cs b/BFF/src/Host/Internal/StrictSameSiteExternalAuthenticationMiddleware.cs index 679643a..70cbf36 100644 --- a/BFF/src/Host/Internal/StrictSameSiteExternalAuthenticationMiddleware.cs +++ b/BFF/src/Host/Internal/StrictSameSiteExternalAuthenticationMiddleware.cs @@ -35,7 +35,7 @@ public async Task Invoke(HttpContext ctx) } else if (ctx.Request.Method == "GET" && !ctx.Request.Query["skip"].Any()) { - location = ctx.Request.Path + ctx.Request.QueryString + "&skip=1"; + location = ctx.Request.Path + ctx.Request.QueryString.Add("skip", "1"); } if (location != null)