Update loginserver_webserver.cpp

This commit is contained in:
Akkadius 2019-09-08 03:24:02 -05:00
parent 1e6a67e1ad
commit edf93f20e5

View File

@ -107,7 +107,7 @@ namespace LoginserverWebserver {
std::string username = request_body.get("username", "").asString();
std::string password = request_body.get("password", "").asString();
std::string email = request_body.get("email", "").asString();
uint32 login_account_id = request_body.get("account_id", "").asInt();
uint32 login_account_id = request_body.get("login_account_id", "").asInt();
Json::Value response;
if (username.empty() || password.empty()) {