Hi, i could really use a hand on this.
With such code:
var culture = HttpContext.Features.Get<IRequestCultureFeature>()!.RequestCulture.Culture;
using var umbracoContext = _umbracoContextFactory.EnsureUmbracoContext().UmbracoContext;
var blog = (Blog)umbracoContext.Content!.GetByRoute("/blog", culture: culture.Name)!;
var response = MapBlogToResponse(blog, culture.Name);
return Ok(response);
When looking into the debugger, i only get one child one, but that child node has a list of cultures, which has two elements?