This commit is contained in:
Richa Bansal 2024-01-11 13:30:41 -08:00 коммит произвёл GitHub
Родитель 5d880f1e8b
Коммит bf6d6a094e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -346,7 +346,7 @@ namespace Microsoft.Health.Fhir.Api.Features.Routing
// NOTE: Append "/" to the end of the path base to workaround a known bug in UrlHelper.RouteUrl for endpoint routing.
// Remove the workaround when we pick up the fix. (https://github.com/dotnet/aspnetcore/issues/53177)
var pathBase = httpContext.Request?.PathBase.ToString();
if (!string.IsNullOrEmpty(pathBase) && (string.IsNullOrEmpty(httpContext.Request?.Path) || string.Equals(httpContext.Request?.Path, "/", StringComparison.Ordinal)))
if (!string.IsNullOrEmpty(pathBase) && !pathBase.EndsWith('/') && (string.IsNullOrEmpty(httpContext.Request?.Path) || string.Equals(httpContext.Request?.Path, "/", StringComparison.Ordinal)))
{
pathBase += "/";
}