Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ internal InjectionConcern(IHandler content, IServiceProvider services)

public ValueTask PrepareAsync() => Content.PrepareAsync();

public ValueTask<IResponse?> HandleAsync(IRequest request)
public async ValueTask<IResponse?> HandleAsync(IRequest request)
{
using var scope = Services.CreateScope();

request.Configure(Services, scope);

return Content.HandleAsync(request);
return await Content.HandleAsync(request);
}

#endregion
Expand Down
Loading