handlerlogin: Fix typo in error message

This commit is contained in:
Albert S. 2020-08-23 17:29:33 +02:00
parent 84b55f6e96
commit 192c533f1f
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ std::vector<char> HandlerLogin::pbkdf5(std::string password, const std::vector<c
Response HandlerLogin::handleRequest(const Request &r)
{
auto createErrorReesponse = [&]() {
return errorResponse("Login error", "The supplied credenetials are incorrect");
return errorResponse("Login error", "The supplied credentials are incorrect");
};
if(isBanned(r.getIp()))