Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FeatureGatedAsyncActionFilter.cs #260

Merged
merged 5 commits into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionE

if (await featureManager.IsEnabledAsync(FeatureName).ConfigureAwait(false))
{
IServiceProvider serviceProvider = context.HttpContext.RequestServices.GetRequiredService<IServiceProvider>();

IAsyncActionFilter filter = ActivatorUtilities.CreateInstance<T>(serviceProvider);
IAsyncActionFilter filter = ActivatorUtilities.CreateInstance<T>(context.HttpContext.RequestServices);

await filter.OnActionExecutionAsync(context, next).ConfigureAwait(false);
}
Expand Down