Skip to content

Commit

Permalink
Merge pull request #21364 from abpframework/auto-merge/rel-9-0/3211
Browse files Browse the repository at this point in the history
Merge branch dev with rel-9.0
  • Loading branch information
maliming authored Nov 18, 2024
2 parents aca6cac + 75eb62e commit 7c9c466
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public virtual void CheckLibs(ApplicationInitializationContext context)

app.Use(async (httpContext, next) =>
{
if (!await CheckLibsAsyncOnceAsync(httpContext))
if (!httpContext.Request.IsAjax() && !await CheckLibsAsyncOnceAsync(httpContext))
{
var errorPage = new AbpMvcLibsErrorPage();
await errorPage.ExecuteAsync(httpContext);
Expand Down

0 comments on commit 7c9c466

Please sign in to comment.