Skip to content

Commit

Permalink
🍄 Add response header frame information.
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkSoul committed Oct 2, 2020
1 parent 8f31f41 commit 6e665df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Fur/App/Filters/StartupFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
// 设置响应报文头信息,标记框架类型
app.Use(async (context, next) =>
{
context.Response.Headers[DotNetFrameworkResponseHeader] = nameof(Fur);
context.Response.Headers[DotNetFrameworkResponseHeader] = "Fur";
await next.Invoke();
});
Expand Down

0 comments on commit 6e665df

Please sign in to comment.