Added a missing type declaration.

This commit is contained in:
xneg 2018-07-11 19:37:49 +03:00
parent 5f30fabf85
commit 1ab5a71b3a
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ namespace WebApiHttpAuthService.Controllers
{
// Note: the following is necessary to ensure that no
// BOM is part of the response
private static readonly encoding = new UTF8Encoding(false);
private static readonly UTF8Encoding encoding = new UTF8Encoding(false);
[Route("user")]
[HttpPost]