Skip to content

Commit

Permalink
typo fix JwtAuthenticationMiddleware.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
petryshkaCODE authored Dec 31, 2024
1 parent da51738 commit 1ef1e41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public async Task InvokeAsync(HttpContext context, RequestDelegate next)
context.Response.ContentType = "application/json";
await context.Response.WriteAsync(
JsonConvert.SerializeObject(
new { errpr = e.Message }
new { error = e.Message }
));
return;
}
Expand Down

0 comments on commit 1ef1e41

Please sign in to comment.