From 86f4848dee8c386b009ac4d07a26effc49449507 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sun, 1 Jan 2017 05:18:53 -0600 Subject: [PATCH] correct this --- .../ConnectionServer/src/shared/ClientConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp b/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp index eae3be68..9775cca3 100755 --- a/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp +++ b/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp @@ -296,7 +296,7 @@ void ClientConnection::handleClientIdMessage(const ClientIdMsg &msg) { static const std::string sessURL(ConfigConnectionServer::getSessionURL()); - if (result || sessionId) { + if (result || sessionId != '\0') { if (ConfigConnectionServer::getValidateStationKey() && !sessURL.empty()) { bool cont = false; StationId apiSuid = 0;